gpt4 book ai didi

html - 在 bootstrap 网格列上添加背景颜色,防止着色默认网格列填充

转载 作者:行者123 更新时间:2023-12-04 14:05:53 28 4
gpt4 key购买 nike

我的问题是我需要为一个 bootstrap 网格列背景着色,而不是为整个网格列着色,在网格上添加背景颜色,默认填充除外。

HTML

<div class="row">
<div class="col-lg-3 col-md-12 col-sm-12 faq-box">
<div class="faq-titile">
<h4>faq title</h4>
</div>
</div>
<div class="col-lg-9 col-md-12 col-sm-12 pl-0">
.......
</div>
</div>

CSS

.faq-box{
margin: 0;
padding: 30px;
background-color:#EBF3FF ;
}

enter image description here在这里我需要防止颜色满格列,只添加背景颜色而不着色 Bootstrap 网格默认左填充(15px)

最佳答案

在列中添加一个 div,然后向该 div 添加背景:

.padding-here{
padding:2em;
background:#c4c4c4;
width:200px;
height:200px;
border:1px solid black;
}
.padding-here-too{
padding:2em;
width:200px;
height:200px;
border:1px solid black;

}
.padding-here-too div{
background:#c4c4c4;
height:100%;
}
<div class="padding-here">padding here</div>
<div class="padding-here-too">
<div>
padding here too
</div>
</div>

关于html - 在 bootstrap 网格列上添加背景颜色,防止着色默认网格列填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68548735/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com