【发布时间】:2022-01-08 01:51:09
【问题描述】:
如何在引导列之间添加自动偏移?
例如如果有col-5 和col-4 偏移量将是3 等等
【问题讨论】:
标签: html css bootstrap-4 bootstrap-5
如何在引导列之间添加自动偏移?
例如如果有col-5 和col-4 偏移量将是3 等等
【问题讨论】:
标签: html css bootstrap-4 bootstrap-5
在row 上添加类justify-content-between
<div class="container">
<div class="row justify-content-between">
<div class="col-5">
1 of 2
</div>
<div class="col-4">
2 of 2
</div>
</div>
</div>
【讨论】: