Use of the <style> element in an HTML document:
![]()
The <style> tag is supported in all major browsers.
The <style> tag is used to define style information for an HTML document.
Inside the <style> element you specify how HTML elements should render in a browser.
Each HTML document can contain multiple <style> tags.
Tip: To link to an external style sheet, use the <link> tag.
Tip: To learn more about style sheets, please read our CSS Tutorial.
Note: If the "scoped" attribute is not used, each <style> tag must be located in the head section.
The "scoped" attribute is new in HTML5, which allows to define styles for a specified section of the document. If the "scoped" attribute is present, the styles only apply to the style element's parent element and that element's child elements.
New : New in HTML5.
| Attribute | Value | Description |
|---|---|---|
| media | media_query | Specifies what media/device the media resource is optimized for |
| scopedNew | scoped | Specifies that the styles only apply to this element's parent element and that element's child elements |
| type | text/css | Specifies the MIME type of the style sheet |
The <style> tag also supports the Global Attributes in HTML.
The <style> tag also supports the Event Attributes in HTML.
HTML tutorial: HTML CSS
HTML DOM reference: Style object
Your message has been sent to W3Schools.