My New Webpage

Inline CSS Guide – How to Style an HTML Tag Directly

Amy Haddad

Amy Haddad

Inline CSS Guide – How to Style an HTML Tag Directly

You’ve written some HTML and now need to style it with CSS. One way is to use inline styles, which is what this article is about.

This is my first paragraph.

Before we jump into the nuances of inline styles—when, why, and how to use them—it’s important to be aware of the other ways to style your HTML. That way, you choose the best option for your code.

Here’s a summary of your options.

External Stylesheet

Developers typically keep all of their CSS in an external stylesheet. In your HTML file, use the element to link to your external stylesheet, which contains your CSS.

Inside the file, index.css, we have our CSS rules.

Internal stylesheet

Another option for styling CSS is using an internal stylesheet. This means defining your CSS rules inside the element in your HTML file.

Inline Styles

Less frequently, you’ll find yourself reaching for inline styles. But they’re still important to know about because there are certain occasions when they come in handy.

With inline styles, you’ll add the style attribute to an HTML tag followed by your CSS to style an element.

This is my first paragraph.

This is my second paragraph.

So in our case, the text of the first paragraph is red with a font-size of 20px. The second one, however, remains unchanged.

Let’s take a closer look at how and when to use inline styles. We’ll also uncover why only one of our paragraphs is styled.

What’s an HTML Tag?

With inline styles, you apply CSS to the style attribute in the opening HTML tag.

Examples of HTML tags include:

Opening and closing tags are often part of the HTML element, which can contain text, data, an image, or nothing at all.

Here, we have an element of text.

This is my first paragraph.

We can use inline styles to style this element by adding the style attribute to the opening tag, followed by CSS property-value pairs.

 

This is my first paragraph.

This is my second paragraph.

Let’s walk through how we used inline styles.

How to Use Inline Styles

Add the style attribute to the tag you want to style, followed by an equals sign. Start and end your CSS with double quotation marks.

Add property-value pairs to the style attribute. Add a semicolon after each property-value pair.

So when we put everything together, it looks like this:

This is my first paragraph.

Key Points to Know

Unlike internal and external stylesheets, inline styles don’t contain curly braces or line breaks. That is, write your CSS all on the same line when using inline styles.

Also, keep in mind that inline styles only affect the specific element that you add the style attribute with CSS property-value pairs to.

For example, in the code below only the first paragraph is styled red with a font-size of 20px.

 

This is my first paragraph.

This is my second paragraph.

If we want to style the text of both paragraphs with inline styles, then we need to add CSS to the style attribute to the second as well.

 

This is my first paragraph.

This is my second paragraph.

However, if we used an external stylesheet, for example, we could easily style both paragraphs without duplicating our code by using a single CSS selector.

This brings us to an important topic: when to use and when not to use inline styles.

When to Use (and when NOT to use) Inline Styles

Say you have an HTML file with ten or more paragraph tags. Can you imagine styling each one individually with inline styles?

Doing so will quickly clutter your code, making it hard to read and maintain.

Besides, inline styles can introduce specificity issues if you’re also using internal or external stylesheets.

That’s because inline styles have a high specificity. This means they’ll override most other rules in internal and external stylesheets, except for the !important declaration.

For example, we added inline styles to two paragraph elements. We’ve also added an internal stylesheet.

   p 

A blue paragraph.

Another blue paragraph.

The CSS from our inline styles override the CSS in the internal stylesheet. So we end up with two blue paragraphs.

External stylesheets are also much easier to maintain when you or someone else needs to make a change. This is because a style from an external or internal stylesheet can apply to multiple elements, while an inline one must be applied to each element individually.

For example, say you need to update a style to ten elements. It’s easier to make the change once in an external stylesheet, instead of ten different times in your HTML file.

In general, it’s often best practice to put your CSS into a separate file. That way, your HTML file contains the structure and content of your website, and your CSS file contains your styles. Doing so makes your code easier to read and manage.

However, there are times when it may make sense to use inline styles:

  • Add a style and see the change quickly, which can be useful for testing.
  • Use the style attribute in JavaScript to apply styling.

Most of the time you’ll want to use external stylesheets. But you’ll occasionally find yourself using inline styles, most commonly in the above situations.

I write about learning to program, and the best ways to go about it on my blog at amymhaddad.com.

Источник

HTML Стили

CSS (Cascading Style Sheets), или каскадные таблицы стилей, используются для описания внешнего вида веб-документа, написанного языком разметки. CSS устанавливает стилевые правила, которые изменяют внешний вид элементов, размещенных на веб-страницах, выполняют тонкую настройку их деталей, таких как цвет, шрифт, размер, границы, фон и местоположение в документе.

Вы можете встроить CSS-код непосредственно в элемент разметки в виде значения атрибута style. Этот атрибут доступен для всех элементов HTML. С помощью CSS можно указать ряд свойств стиля для данного HTML-элемента. Каждое свойство имеет имя и значение, разделенные двоеточием (:). Каждое объявленное свойство отделяется точкой с запятой (;).

Вот как это выглядит для элемента

:
Пример: применение стилей к элементу

Способы добавления CSS стилей

Стандарт CSS предлагает три варианта применения таблицы стилей к веб-странице:

  • Внешняя таблица стилей &#8212 определение правил таблицы стилей в отдельном файле .css, с последующим подключением этого файла в HTML-документ с помощью тега .
  • Внутренняя таблица стилей &#8212 определение правил таблицы стилей с использованием тега , который обычно располагается в разделе HTML-документа .
  • Встроенный стиль &#8212 это способ вставки языка таблицы стилей прямо в начальный тег HTML-элемента.

Давайте познакомимся со всеми тремя способами на конкретных примерах.

Внешняя таблица стилей

Давайте поместим эти три строки CSS в новый файл в любом текстовом редакторе (например Notepad++), а затем сохраним файл как style.css в папке styles. Чтобы применять CSS к нашему HTML-документу, вставьте следующую строку в шапку, то есть между тегами и :

Пример: Внешняя таблица стилей

Текст первый

Текст второй

Текст третий

      

Текст первый

Текст второй

Текст третий

Внутренняя таблица стилей

Данный стиль определяется в самом HTML-документе и обычно располагается в заголовке веб-страницы HEAD. По своей гибкости и возможностям этот способ подключения стилей уступает предыдущему, но также позволяет размещать все стили в одном месте. В данном случае, стили разполагаются прямо в теле HTML-документа. Вы можете включить правила CSS в НТМL-страницу, поместив их внутри элемента , который обычно находится в элементе , но фактически может быть помещен в любом месте документа. Этих тегов на странице может быть несколько.

Тег позволяет записывать внутри себя код в формате CSS:

Пример: Внутренняя таблица стилей

Заголовок

Текст первый

Текст второй

Текст третий

     body < background-color:palegreen; >h1 < color: blue; font-family:verdana; >p 

Заголовок

Текст первый

Текст второй

Текст третий

В данном примере мы с помощью CSS установили цвет фона для элемента : background-color:palegreen, цвет и тип шрифта для заголовков : color: blue; font-family:verdana, а также размер шрифта, цвет и выравнивание текста по центру для параграфов

: font-size:20px; color:red; text-align:center.

Встроенный стиль

Когда необходимо отформатировать отдельный элемент HTML-страницы, описание стиля можно расположить непосредственно внутри открывающего тега при помощи уже специализированного атрибута style. Например:

Такие стили называют встроенными (inline), или внедренными. Правила, определенные непосредственно внутри открывающего тега элемента перекрывают правила, определенные во внешнем файле CSS, а также правила, определенные в элементе .

В следующем примере к HTML-документу подключены все три рассмотренные стиля форматирования:

Пример: Приоритетность стилей

Заголовок

Текст первый

Текст второй

Текст третий

      body < background-color:palegreen; >h1 < color: blue; font-family:verdana; >p 

Заголовок

Текст первый

Текст второй

Текст третий

Чем ближе описание стиля находится к элементу, тем более высокий приоритет имеет этот стиль при выборе браузером конечного правила оформления.

Задачи

Выравнивание текста по центру

Задача HTML:

      

Это параграф.

Цвет фона страницы

Задача HTML:

     body h1 p 

Заголовок

Параграф

Тип шрифта для страницы

Задача HTML:

     body h1 p 

Заголовок

Параграф

Внешняя таблица стилей

В папке styles находится файл со стилями style.css. Подключите стилевой файл (внешняя таблица стилей) к HTML-документу.

Задача HTML:

      

Параграф первый

Параграф второй

Параграф третий

Источник

Читайте также:  Php exception in constructor
Оцените статью