CSS – How to fix the background image with full width and full height
If you would like to fix a background image with css, use the code below.
[css]
body {
background-image:url(image-url.jpg);
background-size:100% 100%;
background-attachment:fixed;
}
[/css]
Views (214)
The following two tabs change content below.

Owen Woo

Latest posts by Owen Woo (see all)
- Prestashop – How To Change Home Feature Product Deafult Sorting in PHP - March 14, 2016
- WordPress Plugins You Should Install - November 17, 2015
- Google Negative SEO - November 17, 2015
- JQuery – Put JQuery in Prestashop tpl file - September 18, 2015
- CSS – How to fix the background image with full width and full height - September 18, 2015
Leave a Reply