bootstrap在display之后平均分
时间: 2023-08-11 16:35:27 浏览: 56
如果您想在使用 Bootstrap 的 `display` 属性后平均分配子元素的宽度,可以使用 Bootstrap 的 `d-flex` 和 `justify-content-between` 类。例如,以下代码将创建一个具有三个子元素的 `div`,并将它们平均分配在容器中:
```html
<div class="d-flex justify-content-between">
<div>子元素1</div>
<div>子元素2</div>
<div>子元素3</div>
</div>
```
您还可以使用 `justify-content-around` 类来在子元素之间创建等距间隔。
阅读全文