Set Background Image to full screen using CSS

Set Background Image to full screen using CSS

Welcome back today I am going to show you how to set the background image to full screen using CSS. In Nowadays full-screen background images is most widely used. First of all you need to find a good HD image otherwise that won’t work.

After that, you can apply given code and after that background image ll set to full screen. and whenever you ‘ll zoom in and zoom out that ll not change. Image ll be fixed always.

Set Background Image to full screen using CSS

.fullbg { 
  background: url(fullbackground.jpg) no-repeat center center fixed; 
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

Check Our Another Article For Open Popup On Page Load