如何在div中打破线?

时间:2017-04-09 14:47:10

标签: html css

我有一个div,其中包含很多div个符号。我想要它,以便当行上有太多div时,其他div将显示在一个新行中。 在这张图片中可以看到问题: Screenshot of the problem

2 个答案:

答案 0 :(得分:1)

您可以使用inline-block CSS属性:

.box2 {
  display: inline-block;
  width: 200px;
  height: 100px;
  margin: 1em;
}

在此处详细了解此媒体资源:Inline-Block - LearnLayout

答案 1 :(得分:1)

One possibility is to use flexbox with these settings on your container element:

.wrapper {
  display: flex:
  justify-content: flex-start;
  flex-wrap: wrap;
}