麻烦与div之间不需要的空间

时间:2013-07-19 11:22:50

标签: php css

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

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

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

Example

我无法弄清楚如何擦除这个空间,我当然用谷歌搜索它,显然这是一个常见的问题,但我找到的所有解决方案都没有帮助我。

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;
}

2 个答案:

答案 0 :(得分:1)

.subBox {
    position: relative;
    width: 224px;
}
.sub {
    position: relative;
    width: 224px;
}

答案 1 :(得分:0)

.sub {
    width: 224px;    
    position: relative;    
}

你从.sub

的高度获得20px的空白区域

也是

的高度
.subBox {
width: 224px;
height: 20px;
position: relative;
}