前端之家收集整理的这篇文章主要介绍了
html – 如何删除引导列之间的空间?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想
删除引导网格中多列之间的空格.我们如何覆盖Bootstraps CSS以实现此任务或使用纯CSS的任何其他更好的
解决方案?
main.html中
<div class="row">
<div class="col-md-2">
// stuff here for this column
</div>
<div class="col-md-10">
// stuff here for columns
</div>
</div>
在需要
删除空格时
添加一个类使用它
.padding-0{
padding-right:0;
padding-left:0;
}
在html写这个类
<div class="row">
<div class="col-md-2 padding-0">
//stuff here for this column
</div>
<div class="col-md-10 padding-0">
//stuff here for columns
</div>
</div>
原文链接:https://www.f2er.com/html/232255.html