Source code
Revision control
Copy as Markdown
Other Tools
<head>
<title>CSS: style attribute vs. tag selectors (interleaved importance)</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="match" href="reference/ref-white-on-green-background.html" />
<style type="text/css">
div { color: white ! important; background: red; }
</style>
</head>
<body>
<div style="color: yellow; background: green ! important;">This should be white on green.</div>
</body>
</html>