0

ウェブサイトで作業していて、作成したナビゲーションディバイダーにナビゲーションバーを配置しようとしていますが、画像を配置すると、タグの間にあるにもかかわらず、ディバイダーに入りません。これがどのように見えるかです: ここに画像の説明を入力してください

ここに私のコードがあります:

CSS:

body{background-color:#030303}
#wrapper {width:800px;
margin:0 auto;
}
#header {background-color:yellow;
text-align:center; 
height:50px;
}
#footer{clear:both; 
background-color:yellow ;
text-allign:center;
}
#logo {float:left;
width: 139px;
background-color: black;
text-align: left;
height:70px;}

#navigation {width: 800px;
background-color:#EDEDED;
height:50px;
}
#sidebar {float:left;padding:20px; background-color:green;text-align:right;width:100px;height:460px;}
#content {float:right;width: 620px;
padding:20px; background-color:gray;
text-align:left; height:500px;
border-color:#0017FF;
}

HTML:

<! DOCTYPE html>
<html>
<head> <title>Website</title>
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
<div  id="header">
This is my header.
</div>
<div id="logo">
<br/>
<img src="images/SubZer0-logo-and-name.png" width="140" height="50" align="left"></div>
<div  id="navigation">
<img src="images/subzero-banner-new.png" width="750" height="45" align="top">
</div>

<div  id="content">
This is my content box.
</div>
<div  id="sidebar">
This is my sidebar.
</div>
<div  id="footer">
This is my footer.
</div>

</body>
</html>

これを修正するにはどうすればよいですか?ありがとうございました!

4

1 に答える 1

0

気にしないで、修正しました...画像がコンテナに対して大きすぎることがわかりました..コンテナが800x50で画像が750x45だったので、理由はわかりませんが、今は機能しており、それが重要です.

于 2013-01-11T00:35:44.293 に答える