PHP前端开发

bootstrap怎么用offset

百变鹏仔 1个月前 (11-13) #bootstrap
文章标签 bootstrap

使用 bootstrap 偏移量

Bootstrap 偏移量是一种有用的类,允许您将元素水平或垂直地从网格系统中移动特定距离。

如何使用偏移量类:

要使用偏移量类,只需在您要偏移的元素中包含相应的类名即可。例如,要将元素向右偏移 2 列,请使用 offset-2 类。

水平偏移:

垂直偏移:

示例:

<div class="row">    <div class="col-6 offset-3">        <p>向右偏移 3 列</p>    </div></div>
<div class="row">    <div class="col-12 offset-top-2">        <p>向下偏移 2 个单元</p>    </div></div>

注意: