当应用%时,浮点div的宽度工作正常,即8,9,10但不是7。 这是jsfiddle http://jsfiddle.net/NHuH8/6 评论和关闭需要@结束。需要做什么
感谢
答案 0 :(得分:0)
为“父”CSS声明指定宽度(以像素为单位)。
答案 1 :(得分:0)
摆脱你的宽度并设置“关闭”'到float: right;
。并且关闭'在评论'之前,或者'关闭'最终会在下一行结束。
答案 2 :(得分:0)
您可以使用comment
和close
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;
}