最新文档有:
<p class=" mb0 ">Lorem ipsum</p>
mb-0是什么?
最新文档有:
<p class=" mb0 ">Lorem ipsum</p>
mb-0是什么?
当前回答
Bootstrap具有用于样式化的预定义类。 如果你熟悉CSS,你应该知道什么是填充,边距和间距等。
Mb-0 = margin-bottom:0;
好的,现在再深入一点,bootstrap有更多的边距类,包括:
mt- = margin-top
mb- = margin-bottom
ml- = margin-left
mr- = margin-right
my- = it sets margin-left and margin-right at the same time on y axes
mX- = it sets margin-bottom and margin-top at the same time on X axes
这和更多的解释在这里https://getbootstrap.com/docs/5.0/utilities/spacing/ 最好的学习方法是通过https://getbootstrap.com网站本身。它解释了很多关于它的内置类。
其他回答
M -用于设置边距的类,如下所示:
Mt -用于设置margin-top的类 MB -用于设置margin-bottom的类 Ml -用于设置左距的类 Mr -用于设置右边距的类 Mx -用于同时设置左距和右距的类 My -用于同时设置margin-top和margin-bottom的类
其中size为margin之一:
0 - for classes that eliminate the margin by setting it to 0, like mt-0 1 - (by default) for classes that set the margin to $spacer * .25, like mt-1 2 - (by default) for classes that set the margin to $spacer * .5, like mt-2 3 - (by default) for classes that set the margin to $spacer, like mt-3 4 - (by default) for classes that set the margin to $spacer * 1.5, like mt-4 5 - (by default) for classes that set the margin to $spacer * 3, like mt-5 auto - for classes that set the margin to auto, like mx-auto
Bootstrap具有用于样式化的预定义类。 如果你熟悉CSS,你应该知道什么是填充,边距和间距等。
Mb-0 = margin-bottom:0;
好的,现在再深入一点,bootstrap有更多的边距类,包括:
mt- = margin-top
mb- = margin-bottom
ml- = margin-left
mr- = margin-right
my- = it sets margin-left and margin-right at the same time on y axes
mX- = it sets margin-bottom and margin-top at the same time on X axes
这和更多的解释在这里https://getbootstrap.com/docs/5.0/utilities/spacing/ 最好的学习方法是通过https://getbootstrap.com网站本身。它解释了很多关于它的内置类。
因为这个“线程”是搜索class=“mb-0”时出现的第一个,我想提到的是,所有这些答案都是不赞成的。现在在2022年2月,bootstrap是V5.1,这是在你的类中使用的新间距符号的链接:https://getbootstrap.com/docs/5.1/utilities/spacing/(主要问题是左和右,现在在符号中作为开始和结束的引用)
class = "字节0”
M -集边距
B -设置底部边距或填充
0 -设置0边距或填充
CSS类
.mb-0{
margin-bottom: 0
}
引导4
它用于创建一个0的底距(margin-bottom:0)。您可以在这里看到更多新的间距实用程序类:https://getbootstrap.com/docs/4.0/utilities/spacing/
相关:我如何使用间距实用工具类引导4