Background Positioning

by rtcherry

CSS

body {
    background-image: url(http://lorempixel.com/600/300/transport/5);
    background-size: cover;

    background-position: 25% 25%;
/*
    background-position: top left;
*/
    background-repeat: no-repeat no-repeat;
    background-attachment: fixed;
}