Why does this seem to overlap the content?
.container-fluid {
opacity: 0.3;
background-color: #45abe1;
z-index: -1;
}
.container {
background-color: transparent;
margin: 0 auto;
position: relative;
padding:0px!important;
}
What would be a better way to frame this off? My issue is that .container-fluid seems to be overlapping the .container with content/text I have within.
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="text-center">
<h2>Heading Text</h2>
<p>Brief description here.</p>
</div>
</div>
The last 2 closing divs come after a series more of what's below within. They have their own content with the correct closing tags surrounding their respective content:
<div class="container-fluid">
<div class="row">
Wondering if it's the duplicate of the container-fluid for each block that winds up somehow overlapping again & again... causing the teal background with opacity applied to overlay the text/content?
Thank you.
