25 Feb 2015

CSS Background Code

background-repeat
background-color
background-image
background-attachment
background-positio


body {
    background-image: url("img_tree.png");
    background-position: right top;
    background-repeat: no-repeat;
}

body {
    background: #ffffff url("img_tree.png") no-repeat right top;
}