Is there a way to make the background color of a text cell stretch the width of its container div, rather than just the text itself? https://i.sstatic.net/E3zeL.png
Here's the HTML code snippet:
<div class='col-md-4'>
<span class='section'>Remove Members:</span>
</div>
And here's the CSS code snippet:
.section{
background-color: #f7a7af;
width: 100%;
background-size: contain;
}