blob: 655ea6167dd95a793dc40b4ceab182b3fc4eb116 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>:first-child pseudo-class</title>
<style type="text/css"><![CDATA[.red { background-color : red }
.t1 td:first-child { background-color : lime }
p > *:first-child { background-color : lime }
]]></style>
<link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
<link rel="prev" href="css3-modsel-31.xml" title=":nth-last-of-type() pseudo-class"/>
<link rel="next" href="css3-modsel-33.xml" title=":last-child pseudo-class"/>
<link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
<link rel="up" href="./index.html"/>
<link rel="top" href="../../index.html"/>
</head>
<body>
<div>
<table class="t1" border="1">
<tr>
<td class="red">green cell</td>
<td>1.2</td>
<td>1.3</td>
</tr>
<tr>
<td class="red">green cell</td>
<td>2.2</td>
<td>2.3</td>
</tr>
<tr>
<td class="red">green cell</td>
<td>3.2</td>
<td>3.3</td>
</tr>
</table>
</div>
<p>This paragraph contains some text
<span>and a span that should have a green background</span>
</p>
</body>
</html>