Background Properties

If you use Link back

Background Properties

background-color determines the background color, specified with its hex code
background-color: #COLOR;
background-image with this code you can use any image as your background
background-image: url("IMAGE-URL");
background-attachment determines whether the background scrolls
background-attachment: scroll; will scroll
background-attachment: fixed; doesn't scroll

Background Repeating

background-repeat determines whether the background will repeat
background-repeat: repeat; background is repeated over the entire page
background-repeat: no-repeat; background image is displayed only once
background-repeat will also determine in what direction it will repeat
background-repeat: repeat-x; image is repeated horizontally
background-repeat: repeat-y; image is repeated up and down

Background Positioning

background-position determines where the background will be displayed
background-position: top;
background-position: bottom;
background-position: left;
background-position: right;