我有:
HTML
<div id="container"><div id="left"><div class="box">blahblah</div></div></div>
CSS
.box {
height: 200px;
width: 300px;
margin: 50px;
background:url(box.png) no-repeat }
#container{
width:100%;
}
#left{
float:left;
width: 260px;
height: 600px;
}
当我添加margin: 25px;
到 .box 类时,它会在页面上移动整个框 div。我应该怎么做才能在 div (.box) 中保留内容 (blahblah)?