我需要在div
的class
属性中有一个margin top
。我该怎么做?
<div class="mb-md-3 ml-md-3 col-lg-8" >
<!-- <div class="mb-md-3 ml-md-3 col-lg-8" > -->
<a href="<?php echo base_url();?>admin/admin/add_hospital">
<button class="btn btn-success" onclick="add_hospital()">
<i class="fas fa-plus"></i> Add Hospital
</button>
</a>
</div>
2条答案
按热度按时间kmb7vmvb1#
如您所见:
https://getbootstrap.com/docs/4.0/utilities/spacing/
看起来
mb
和ml
引用了margin-bottom
和margin-left
我不是BootstrapMaven,但也许您可以尝试使用
mt-0
之类的代码至于班级:
应该将Margin top设置为0,否则就用important属性创建自己的类
编辑:
看起来Bootstrap在某个点将某些边距设置为自动:
此外,Bootstrap还包含一个. mx-auto类,用于水平居中固定宽度的块级别内容(即具有以下显示内容的内容:块和宽度设置-通过将水平边距设置为自动。
希望这能帮上忙
sc4hvdpw2#
Bootstrap为设计您的Web给予内置类。
示例
用法
负利润
用法
For More Reference