IE7 - 未应用浮动div的%宽度

时间:2012-03-01 19:03:32

标签: css

当应用%时,浮点div的宽度工作正常,即8,9,10但不是7。 这是jsfiddle http://jsfiddle.net/NHuH8/6 评论和关闭需要@结束。需要做什么

感谢

3 个答案:

答案 0 :(得分:0)

为“父”CSS声明指定宽度(以像素为单位)。

答案 1 :(得分:0)

摆脱你的宽度并设置“关闭”'到float: right;。并且关闭'在评论'之前,或者'关闭'最终会在下一行结束。

答案 2 :(得分:0)

您可以使用commentclose div

的绝对位置

CSS:

#child1{
    background-color:blue;
    width:300px;
    border: 1px solid yellow;
    margin-bottom:15px;
}

#child3{
    background-color:yellow;
    width:auto;
    position:relative;

}
#comment{
    position:absolute;
    bottom:0px;
    left:0px;
}
#close{
    position:absolute;
    bottom:0px;
    right:0px; 
}

Fiddle