http://img.ctrlv.in/img/17/03/25/58d64289941a7.png
正如标题所说。我真的很无奈。
如果我从css中移除浮动标签,它就像我想要的那样 - 但是图像并不是彼此相邻的。 - > http://img.ctrlv.in/img/17/03/25/58d6444491235.png
提前致谢。
答案 0 :(得分:0)
尝试给予,
.obsah{
display: block;
overflow: hidden;
}
答案 1 :(得分:0)
你需要做什么被称为"清除花车"。您需要在图像后面添加一个新元素,并将clear: both;
添加到新元素的CSS中。
以下是一个示例,重要部分是<div class="clear"></div>
和
.clear {
clear: both;
}
.content {
background-color: grey; /* only for demonstration */
}
.img-placeholder { /* only for demonstration */
height: 100px;
width: 150px;
background-color: red;
margin: 10px;
float: left;
}
.clear { /* this is the important part */
clear: both;
}
&#13;
<div class="content">
<div class="img-placeholder"></div>
<div class="img-placeholder"></div>
<div class="clear"></div>
</div>
&#13;