画像をページ全体の中央に表示する

動作ブラウザ 【 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 - - - - - - - - - - -

ポイント <table width="100%" height="100%"><tr><td align="center" valign="middle">
説  明 画像をページ全体の中央に表示するにはtableタグのwidthとheightで100%を指定します。後はtdタグのalignでcenter、valignでmiddleを指定するとページ全体の中央に画像が表示されます。
サンプル <html> <head> <title>画像をページ全体の中央に表示する</title> </head> <body> <table width="100%" height="100%"><tr><td align="center" valign="middle"> <img src="photo.jpg"> </td></tr></table> </body> </html>
補足説明 なし

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