This is a heading

This is a paragraph.

``` "> This is a heading

This is a paragraph.

``` " />
Easy Tutorial
❮ Ev Onafterprint Att Iframe Height ❯

HTML style Attribute

HTML Global Attributes

Example

Using the style attribute in an HTML document:

<h1 style="color:blue;text-align:center">This is a heading</h1>
<p style="color:green">This is a paragraph.</p>

Browser Support

All major browsers support the style attribute.


Definition and Usage

The style attribute specifies an inline style for an element.

The style attribute will override any global style settings, such as those set in the <style> tag or in an external style sheet.


Differences Between HTML 4.01 and HTML5

In HTML5, the style attribute can be used with any HTML element (it will validate any HTML element, but it may not be useful).

In HTML 4.01, the style attribute cannot be used with: <base>, <head>, <html>, <meta>, <param>, <script>, <style>, and <title>.


Syntax

Attribute Values

Value Description
style_definitions One or more CSS properties and values separated by semicolons. (e.g., style="color:blue;text-align:center")

❮ Ev Onafterprint Att Iframe Height ❯