表のセル内の縦方向の位置揃えを指定する

動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 2.x
Windows - -
Macintosh - -
UNIX - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント <td width="120" height="80" valign="top" >上</td> <td width="120" height="80" valign="middle">中</td> <td width="120" height="80" valign="bottom">下</td>
説  明 セル内容の縦方向の位置はtdタグまたはthタグのvalign属性を使います。valign="top"で上側、valign="middle"で中央、valign="bottom"で下側になります。
サンプル <html> <head> <title>表のセル内の縦方向の位置揃えを指定する</title> </head> <body> <table border="1"> <tr><td width="120" height="80" valign="top" >上</td></tr> <tr><td width="120" height="80" valign="middle">中</td></tr> <tr><td width="120" height="80" valign="bottom">下</td></tr> </table> </body> </html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!