1

我在课间有一些我不想要的空间。

这是一个小提琴:http: //jsfiddle.net/4YSXv/

它应该是一个中间没有任何空格的盒子:

例子

我不知道如何擦除这个空间,我当然搜索了它,显然这是一个常见问题,但我找到的所有解决方案都没有帮助我。

HTML

       <div class='image'>
       </div>
       <div class='line1'>
       </div>
       <div class='head'>
       </div>
       <div class='subBox'>
          <div class='sub'></div>
          <div class='price'></div>
          <div class='button'></div>
       </div>
       <div style='clear:both;'></div>

       <div class='line2'>
       </div>
       </div>
</div>
<div class='placeholder'>
</div>

CSS

.headerimage {
    position:absolute;
    left:0px;
    right:0px;
    height:273px;
    background-color:#000000;
}
.box1 {
    position:relative;
    top:273px;
}
.produkt {
    width:224px;
    height:318px;
    position:relative;
    float:left;
}
.image {
    width:224px;
    height:230px;
    background-color:#afeeee;
    position:relative;
}
.line1 {
    width:224px;
    height:1px;
    background-color:#000000;
    position:relative;
}
.head {
    width:224px;
    height:25px;
    background-color:#eeeeee;
    position:relative;
}
.subBox {
    width:224px;
    height:50px;
    position:relative;
}
.sub {
    width:224px;
    height:25px;
    position:relative;
}
.price {
    width:160px;
    height:20px;
    background-color:#847077;
    position:relative;
    float:left;
}
.button {
    width:58px;
    height:20px;
    background-color:#6A5ACD;
    position:relative;
    float:left;
}
.line2 {
    width:224px;
    height:5px;
    background-color:#000000;
    position:relative;
    padding-bottom:20px;
}
.placeholder {
    height:800px;
    width:800px;
    position:relative;
    padding-top:1000px;
}
4

2 回答 2

1
.subBox {
    position: relative;
    width: 224px;
}
.sub {
    position: relative;
    width: 224px;
}
于 2013-07-19T11:55:36.717 回答
0
.sub {
    width: 224px;    
    position: relative;    
}

您从 .sub 的高度获得 20px 的空白空间

还有身高

.subBox {
width: 224px;
height: 20px;
position: relative;
}
于 2013-07-19T11:44:44.960 回答