Files
servo/tests/wpt/css-tests/css21_dev/html4/specificity-013.htm

21 lines
912 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Specificity with universal selector</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/cascade/specificity/003.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#specificity">
<link rel="match" href="reference/specificity-013-ref.htm">
<style type="text/css">
p { color: yellow; background: red; border: maroon; } /* selects the <p> with 0,0,0,1 */
div * { color: white; background: green; } /* selects the <p> with 0,0,0,1 and so should override */
body div * { border: solid lime; } /* selects the <p> with 0,0,0,2 */
</style>
</head>
<body>
<div>
<p>The background of this sentence should be green.</p>
</div>
</body>
</html>