Zen Follower
- Join Date:
- Jun 2006
- Location:
- Midlothian, Virginia, United States
- Posts:
- 110
- Plugin Contributions:
- 0
Background image cover entire background w/one image
If you want to have it make your image 100% width and 100% height of the users screen use this code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 65.5%;
color: #000000;
background-color: #e5edf5;
background-image: url(../images/bg.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
background-clip: border-box;
background-origin: padding-box;
background-size: 100% 100%;
}