style
Summary
Sets an inline style for the element.
Applies to | dom/HTMLElement |
---|
Examples
<!doctype html>
<title>HTML Style Attribute Usage</title>
<p style="background-color: blue; color: white;">This will be white text with a blue background.</p>
Usage
While this is perfectly valid, it is *highly* recommended by the community at large that you not use inline styles. Instead it is much better to simply target the element you want in your CSS and apply rules in there.
Notes
Remarks
This attribute is not accessible through scripting. To access styles through scripting, use the style object.
Related specifications
- HTML4 Specification
- W3C Recommendation