Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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 and 'display: inline-table' elements</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="match" href="caption-side-applies-to-006-ref.html" />
<meta name="assert" content="Caption-side does not apply to 'display: inline-table' elements." />
<style type="text/css">
#table
{
background: blue;
caption-side: bottom;
display: inline-table;
}
#caption
{
display: table-caption;
}
#row
{
display: table-row;
}
#cell
{
background: blue;
display: table-cell;
height: 1in;
width: 2in;
}
</style>
</head>
<body>
<p>Test passes if the "Filler Text" below is below the box.</p>
<div id="table">
<div id="caption">Filler Text</div>
<div id="row">
<div id="cell"></div>
</div>
</div>
</body>
</html>