Home › Forums › CSS › make background images fit all screens without scrolling › Reply To: make background images fit all screens without scrolling
October 2, 2016 at 4:39 pm
#246100
Participant
OK, good point. How about:
body {
background: url(“image.jpg”) top right no-repeat;
background-attachment: fixed;
background-size: 100%;
}
Adding “background-size: 100%;” for proper scaling if the image is in fact that small should rectify the issue. The background should still render perfectly even when the page has scroll bars.
Here we are:
Test