Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Caption-side is inherited by default</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="assert" content="Caption-side is inherited by default." />
<style type="text/css">
#div1
{
caption-side: bottom;
}
table
{
background: blue;
}
td
{
height: 1in;
width: 2in;
}
</style>
</head>
<body>
<p>Test passes if the word "BELOW" is below the box.</p>
<div id="div1">
<table>
<caption>BELOW</caption>
<tr>
<td></td>
</tr>
</table>
</div>
</body>
</html>