嗨,我对我的 div 标签有疑问。我遵循了本教程,在那里我专门做了他所做的事情并得到了不同的结果。我已经用谷歌搜索了这个,我找不到答案。
问题是我的 content_wrapper div 中的 div 标签不会将自己放在 content_wrapper div 中,即使我专门做了与教程中相同的事情。而是将 div 标签放在我的 content_wrapper div 的底部。如果有任何帮助,我目前正在使用 Dreamweaver CS5。
这就是我写我的div的方式:
<body>
<div id="header"> This is my header </div>
<div id="content_wrap">
<div id="left_content"> Advertisement </div>
<div id="right_content"> </div>
</div>
</body>
这是我的 CSS:
#header{
height:1000px;
width:1000px;
margin-left:auto;
margin-right:auto;
border:solid 1px;
}
#content_wrapper{
height:800px;
width:980px;
margin-left:auto;
margin-right:auto;
margin-top:10px;
}
#left_content {
height:800px;
width:240px;
float:left;
margin-left:auto;
margin-right:auto;
border:solid 1px;
}
#right_content {
height:800px;
width:730px;
margin-left:10px;
margin-right:auto;
float:right;
border:solid 1px;
}