I am trying to make my div stretch across the entire width of the web browser window. However, I noticed that when I scroll to the right side of the page, the div style gets cut off.
.div3{
background-image: url('images.jpeg');
background-repeat: repeat-x;
background-attachment: scroll;
}
https://i.sstatic.net/FO5Tv.jpg
My goal is to have the div style extend all the way to the right on the web page.