/ Published in: CSS
Fullscreen background image using pure CSS3. Tested and working in FF16, IE9 and Chrome
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
html { background: url(../img/your-background-image.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
URL: http://css-tricks.com/perfect-full-page-background-image/