<section id="about">
<div class="container">
<div class="row mt-400 mt-xs-20">
<div class="col-md-12 text-center">所以我找到了下面的代码。mt和mt-xs代表什么?谷歌搜索没有相关信息,有没有医生可以告诉我?
发布于 2018-06-29 04:33:56
这是一个间隔值。m表示margin。t表示top。因此,它正在为您的行设置上边距。xs表示被视为extra small的屏幕大小。
有关详细信息,请参阅https://getbootstrap.com/docs/4.0/utilities/spacing/。
发布于 2016-10-10 15:42:52
这些是自定义的css类。通常,一些html模板会随它们一起提供。在css文件中查找mt-400 mt-xs-20。
代码可能如下所示:
.mt-400{
margin-top: 400px;
}https://stackoverflow.com/questions/34032756
复制相似问题