我的图片显示在内容div下方而不在其中

时间:2017-03-25 10:22:38

标签: html css

http://img.ctrlv.in/img/17/03/25/58d64289941a7.png

正如标题所说。我真的很无奈。

如果我从css中移除浮动标签,它就像我想要的那样 - 但是图像并不是彼此相邻的。 - > http://img.ctrlv.in/img/17/03/25/58d6444491235.png

提前致谢。

2 个答案:

答案 0 :(得分:0)

尝试给予,

.obsah{
  display: block;
  overflow: hidden;
}

答案 1 :(得分:0)

你需要做什么被称为"清除花车"。您需要在图像后面添加一个新元素,并将clear: both;添加到新元素的CSS中。

以下是一个示例,重要部分是<div class="clear"></div>

.clear {
  clear: both;
}

&#13;
&#13;
.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;
&#13;
&#13;