my problem is I need to color a one bootstrap grid column background instead of coloring full grid-column, add background color on-grid except default padding.
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 ;
}
In here I need to prevent color full grid column, only add background color without coloring bootstrap grid default left padding(15px)