I'm new to exploring Bootstrap and I am currently experimenting with options for displaying content with a semi-transparent background image. Currently, I am using a "well" but I am open to other suggestions. I have managed to place the image inside the well and make it somewhat opaque, but I am struggling to position it behind the other content. Below is a snippet of the HTML code I am working with:
.background1{
background-size:cover;
opacity: .25;
max-width: 1130px;
}
<div class="well">
<div class="row">
<img class="img-rounded background1" src="/Images/housing-4-1213183.jpg" alt="housing" />
<h2>Section Title Here</h2>
<p>This is just a placeholder for text content that would be displayed on top of the desired image.</p>
</div>
</div>
If there is another CSS class that would work better for this type of content display, please share your recommendations with me.