mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
20 lines
838 B
HTML
20 lines
838 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Grouping</title>
|
|
<link rel="help" href="http://www.w3.org/TR/REC-CSS1#grouping">
|
|
<link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
|
|
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
|
|
<style type="text/css">
|
|
.one, .two, .three { color: green; }
|
|
</style>
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#grouping" title="5.2.1 Grouping">
|
|
<link rel="match" href="reference/c12-grouping-000-ref.htm">
|
|
|
|
</head>
|
|
<body>
|
|
<p class="one"> This sentence should be green. </p>
|
|
<p class="two"> This sentence should be green. </p>
|
|
<p class="three"> This sentence should be green. </p>
|
|
</body>
|
|
</html> |