Bootstrap Row MT?

时间:2015-12-02 00:19:41

标签: row

<section id="about">
        <div class="container">
          <div class="row mt-400 mt-xs-20">
            <div class="col-md-12 text-center">

所以我找到了以下代码。 mt和mt-xs代表什么?谷歌搜索没有提供任何相关信息,是否有某个文件可以告诉我?

2 个答案:

答案 0 :(得分:1)

这些是自定义css类。通常一些html模板随附。在你的css文件中寻找mt-400 mt-xs-20。

代码可能如下所示:

.mt-400{
margin-top: 400px;
}

答案 1 :(得分:0)

这是一个间距值。 m表示margint表示top。因此,它为行设置了上边距。 xs表示被认为是extra small的屏幕尺寸。

有关更多信息,请参见https://getbootstrap.com/docs/4.0/utilities/spacing/