ページ全体のマージン(余白)をなくす

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

ポイント body { margin:0px; }
説  明 ページ全体のマージンをなくすにはスタイルの定義でbodyにmargin:0px;を指定します。
サンプル <html>
<head>
<title>ページ全体のマージン(余白)をなくす</title>
<style type="text/css"><!--
body { margin:0px; }
--></style>
</head>
<body>
<table border="0" bgcolor="cyan">
<tr><th>このページはページ全体のマージン(余白)がありません。</th></tr>
</table>
</body>
</html>
補足説明 HTMLでも指定できます。bodyタグにleftmargin="0" topmargin="0" marginwidth="0" marginheight="0"を指定します。(IE4,NN4以降)

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