Can Bootstrap be used to add a border bottom with a width of 3rem (for example) and specify the color in the tag using a class? Here is an example:
.half-title:after{
content: "";
display: block;
width: 3rem;
height: 4px;
margin-top: .75rem;
background: Red;
}
<h1 class="half-title">THIS IS A TITLE</h1>
That's good, but I'd like to achieve this instead:
.half-title:after{
content: "";
display: block;
width: 3rem;
height: 4px;
margin-top: .75rem;
}
<h1 class="half-title bg-red">THIS IS A TITLE</h1>
Is it possible to achieve this? Thank you.