marginが効いてくれません。
下記のレイアウトで#contentsのmarginを上下左右10pxで指定していますが、Fierfoxで見るとbottomだけmarginが効いてくれません。
#contentsには背景画像を持ってきたいので、下のmarginがとれないと困っています。
よろしくお願いします。
body {
margin: 0px;
padding: 0px;
text-align: center;
}
#wrap {
padding: 0px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
width: 800px;
text-align: left;
}
#header {
background: #0099CC;
width: 800px;
}
#contents {
padding: 0px;
width: 800px;
margin: 10px;
}
#contents #sidenavi {
background: #CCCCCC;
width: 160px;
float: left;
}
#contents #main {
background: #FFFFCC;
width: 580px;
float: right;
}
#footer {
background: #99CCFF;
height: 80px;
width: 800px;
clear: both;
}
p{
margin: 0px;
padding: 0px;
}
****************************HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis" />
<title>Layout01</title>
<style type="text/css" media="all">
@import url("Layout1.css");
</style>
</head>
<body>
<div id="wrap">
<div id="header">
<h1>Layout</h1>
</div>
<div id="contents">
<div id="sidenavi">内容がここに入ります</div>
<div id="main">
<p>内容がここに入ります</p>
</div>
</div>
<div id="footer">内容がここに入ります</div>
</div>
</body>
</html>