How can I achieve a blue bar background behind this image?
https://i.sstatic.net/RLysr.png
This is my current approach:
.line-divider{
height: 125px;
background-color: #29334B;
}
<div>
<div style="background-color: green; width: auto; height: auto;">
<div class="line-divider" style="background-color: red;">
<img
src="https://dfstudio-d420.kxcdn.com/wordpress/wp-content/uploads/2019/06/digital_camera_photo-1080x675.jpg"
contain
height="300px"
>
</div>
</div>
</div>