Results 1 - 14 of 14

box-shadow

The box-shadow property describes one or more shadow effects as a comma-separated list. It enables you to cast a drop shadow from the frame of almost any element. If a border-radius is specified on the element with a box shadow, the box shadow takes on the same rounded corners. The z-ordering of multiple box shadows is the same as multiple text shadows (the first specified shadow is on top).
CSS CSS Background CSS Property CSS3 css3-background Reference

background

The background CSS property is a shorthand for setting the individual background values in a single place in the style sheet. background can be used to set the values for one or more of: background-clip, background-color, background-image, background-origin, background-position, background-repeat, background-size, and background-attachment.
CSS CSS Background CSS Property Reference

background-attachment

If a background-image is specified, the background-attachment CSS property determines whether that image's position is fixed within the viewport, or scrolls along with its containing block.
CSS CSS Background CSS Property Reference

background-clip

The background-clip CSS property specifies whether an element's background, either the color or image, extends underneath its border.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-image

The CSS background-image property sets one or several background images for an element. The images are drawn on stacking context layers on top of each other. The first layer specified is drawn as if it is closest to the user.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-origin

The background-origin CSS property determines the background positioning area, that is the position of the origin of an image specified using the background-image CSS property.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-position

The background-position CSS property sets the initial position for each defined background image, relative to the background position layer defined by background-origin.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-position-y

The background-position-y CSS property sets the initial vertical position, relative to the background position layer defined by background-origin for each defined background image. For more information, see the background-position property, which has been widely supported for much longer.
CSS CSS Background CSS Property Experimental Reference

background-repeat

The background-repeat CSS property defines how background images are repeated. A background image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-size

The background-size CSS property specifies the size of the background images. The size of the image can be fully constrained or only partially in order to preserve its intrinsic ratio.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

Using CSS multiple backgrounds

With CSS3, you can apply multiple backgrounds to elements. These are layered atop one another with the first background you provide on top and the last background listed in the back. Only the last background can include a background color.
CSS CSS Background Example Guide Intermediate NeedsCompatTable

background-color

The background-color CSS property sets the background color of an element, either through a color value or the keyword transparent.
CSS CSS Background CSS Property Graphics Layout Reference

background-position-x

The background-position-x CSS property sets the initial horizontal position, relative to the background position layer defined by background-origin for each defined background image. For more information, see the background-position property, which has been widely supported.
CSS CSS Background CSS Property Experimental NeedsBrowserCompatibility NeedsMobileBrowserCompatibility Reference

Scaling background images

The background-size CSS property makes it possible to adjust the size of background images, instead of the default behavior of tiling the image at its full size. You can scale the image upward or downward as desired.
Advanced CSS CSS Background Example Graphics Guide Web