テーブルの表示を高速化する

動作ブラウザ 【 IE:5.0  NN:-】 ■CSSバージョン【2】
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.x 6.0 2.x
Windows × × - × × × × -
Macintosh × × × × - - × × × × ×
UNIX - - - - - - × × × × -

ポイント table { table-layout:fixed; }
説  明 テーブルの表示を高速化するには「table-layout:fixed;」のように指定します。ただし、widthで幅を指定し、その幅を超えた画像や文字はクリッピングされ表示されなくなります。
サンプル <html> <head> <title>テーブルの表示を高速化する</title> <style type="text/css"><!-- table { table-layout:fixed; } --></style> </head> <body> <table class="fix" border="10" width="320" bgcolor="white"> <tr><td> <center> <img src="photo.jpg"> </center> <br>  IE5以降ではtable-layout:fixedで高速に表が表示できます。 </td></tr> </table> </body> </html>
補足説明 なし

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