How to make the background image of the blog fill the entire screen

tmirror
How to make the background image of the blog fill the entire screen
A constant question is how to make the background image of the blog always fill the entire screen regardless of the resolution of the monitor. And that is when we put a background image as measured by our monitor forgetting that there are actually monitors of all resolutions, very small and very large. So if we put an image according to our screen, there will be someone with a bigger monitor that surely will not see the whole picture or it will be repeated, and in this case, using very small monitors, the image will be seen incomplete. Here I will talk about two solutions for this, one is using CSS3 , and another is using  jQuery . With either of these two, we'll make the background image of the page to fill the entire screen regardless of the resolution of it. CSS3 The first option is using CSS3, the advantage with this method is that we do not overload the blog with scripts, we use only the background-size property that is responsible for doing what we want. The disadvantage is that…