I am currently struggling with overlaying a white box on top of my background image in order to have my text inside the box for a more visually appealing look. Despite trying to add CSS code like this:
.white-box {
position: absolute;
background-color: #FFFFFF;
color: black;
width: 50px;
height: 50px;
padding: 20px;
}
and inserting HTML tags like this:
<body>
<div class="white-box">
Content
</div>
</body>
I have not been successful in achieving the desired effect on my webpage. My online search results only show variations of what I have already attempted (as shown above). You can see the look I am aiming for here.
Any assistance or guidance would be greatly appreciated! :)