• 締切済み

CSSでの質問です

初めて段組を作ってみたんですが、上の余白を無くするにはどうしたらいいのでしょうか? ソースは以下のとおりです。 <style type="text/css"> <!-- #wrapper { width: 760px; margin: 0px auto; } #header { background-color: #9933FF; height: 50px; top: 0px; } #primary { background-color: #c7d5ed; float: right; width: 550px; margin-top: 10px; margin-bottom: 10px; } #secondary { background-color: #f9cfba; float: left; width: 200px; margin-top: 10px; margin-bottom: 10px; } #footer { clear: both; background-color: #99FFFF; height: 50px; } --> </style> </head> <body> <div id="wrapper"> <div id="header"></div> <div id="primary"> </div> <div id="secondary"> </div> <div id="footer"></div> </div> </body> </html> センタリングを維持したまま上の余白をクリアしたいのですが、何か解消法はありますか?

みんなの回答

  • moon_night
  • ベストアンサー率32% (598/1831)
回答No.1

<body style="margin-top: 0px;"> ということですか? どこの話をしているのか分かりません。

beginner_w
質問者

お礼

説明不足で申し訳ありません。 body { margin-top : 0px; } 無事解決できました。 ありがとうございます。

関連するQ&A