I want to extend my div through the whole page of the web browser. When I scroll to the right side of the page. The div style cuts off.
.div3{
background-image: url('images.jpeg');
background-repeat: repeat-x;
background-attachment: scroll;
}
The expected output should show the web page with div style extending to the right.