karnaze%netscape.com 56f938d43c regression tests
git-svn-id: svn://10.0.0.236/trunk@45635 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-02 03:46:43 +00:00

43 lines
1.2 KiB
HTML

<!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>