blob: e1f4c11536553e7c49a1d6e77663842a72820f8a [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>caption element: align attribute</title>
</head>
<body>
<h1>caption element: align attribute</h1>
<table border>
<caption>The table's caption, with no align. Default is "top".</caption>
<tr><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td></tr>
</table>
<table border>
<caption align="top">The table's caption, with align="top".</caption>
<tr><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td></tr>
</table>
<table border>
<caption align="bottom">The table's caption, with align="bottom".</caption>
<tr><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td></tr>
</table>
<table border>
<caption align="left">The table's caption, with align="left".</caption>
<tr><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td></tr>
</table>
<table border>
<caption align="right">The table's caption, with align="right".</caption>
<tr><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td></tr>
</table>
</body>
</html>