You want to position a background image in a web page. SolutionUse the background-position property to set the location of the background image. To place an image that starts 75 pixels to the right of and 150 pixels below the upper-left corner of the viewport (see Figure 3-7), use the following CSS rule: body { background-image: url(bkgd.jpg); background-repeat: no-repeat; background-position: 75px 150px; } Figure 3-7. The background placed precisely 75 pixels from the right and 150 pixels from the upper-left corner of browser's viewportDiscussionThe background-position property contains two values separated by a space. The first value of the pair sets the origin point along the x-axis, while the second value sets the point on the y-axis. If only one value is given, that value is used for the horizontal position and the vertical position is set to 50%. The solution used pixel units to determine the placement of the background image; however, you also can use percentages. A value of 50% for background-position means that the browser places the image in the dead center of the viewport, like the one in Figure 3-8, while the values 0% and 100% place the image in the upper-left and lower-right corners, respectively. Figure 3-8. The background image centered in the browser windowAlong with percentages, you can use the values top, center, and bottom for the y-axis and left, center, and right for the x-axis. Using combinations of these values, you can place the background image at the eight points around the edges of the viewport (in the corners and in between), as well as in the middle of the viewport. For example, to recreate the value of 50% in Figure 3-8, you can use this CSS rule instead: body { background-image: url(bkgd.jpg); background-repeat: no-repeat; background-position: center; } To place a background image in the lower-right corner (see Figure 3-9), you can use the following CSS rule: body { background-image: url(bkgd.jpg); background-repeat: no-repeat; background-position: bottom right; } Figure 3-9. The background image placed in the lower-right cornerYou also can use the background-position and background-repeat properties for background images that tile but aren't chained to the sides of the viewport. For example, the following CSS snippet creates a web page design such as the one in Figure 3-10: body { background-image: url(montage.jpg); background-repeat: repeat-x; background-position: 55px 100px; } h1 { font-size: 75px; font-family: Verdana, Helvetica, Arial, sans-serif; text-align: center; margin: 0; padding: 0 0 125px 0; } p { line-height: 1.5em; font-family: Verdana, Helvetica, Arial, sans-serif; margin: 0 15%; } Figure 3-10. A repeating montage created using the CSS properties background-repeat and background-position
See AlsoRecipe 3.7 for setting a non-scrolling image; CSS 2.1 specification for background-position at http://www.w3.org/TR/CSS21/colors.html#propdef-background-position. |