Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-style-attr/style-attr-cascade-001.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS: style attributes vs. important tag selector</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="match" href="reference/ref-green.html" />
<style type="text/css">
div { color: green ! important; }
</style>
</head>
<body>
<!--It has a style attribute with "color: red" but an important rule with "color:green".-->
<div style="color: red">This should be green.</div>
</body>
</html>