|
例2
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=Shift_JIS">
<title>上詰め・下詰め・中詰め</title>
<style type="text/css">
<!--
#top {vertical-align:top;}
#middle {vertical-align:middle;}
#bottom {vertical-align:bottom;}
-->
</style>
</head>
<body>
<table border="1" height="150">
<tr>
<td>上詰め</td>
<td>中詰め</td>
<td>下詰め</td>
</tr>
<tr>
<td class="top">top</td>
<td class="middle">middle</td>
<td class="bottom">bottom</td>
</tr>
</table>
</body>
</html>
こうなります
|