15 Mar 2015

CSS 3 background-repeat Property

body {
    background-image: url("paper.gif");
    background-repeat: repeat-y;
}


body {
    background-image: url("paper.gif");
    background-repeat: repeat-x;
}