Below is the HTML code I have:
<div class="content-wrapper">
<div class="center">
<h1>title</h1>
</div>
<div class="lr">
<p> text </p>
</div>
</div>
The CSS for the content-wrapper section is as follows:
.content-wrapper{
background-image: url(/picture.jpg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
I am struggling to display the background image behind my text. I prefer not to set the background image directly in the body tag. Any assistance would be greatly appreciated. Thank you!