The background-position property sets the starting position of a background image.Tip: By default, a background-image is placed at the top-left corner of an element, and repeated both vertically and horizontally.
background-position: value;
body { background-image: url('smiley.gif'); background-repeat: no-repeat; background-attachment: fixed; background-position: center; }