Quackit Logo
HTML
CSS
Scripting
Database
Hosting
Design
XML
IMCreator - Free Website Builder

CSS background-origin

The CSS background-origin property was introduced in CSS3 for the purposes of setting the background positioning area of an element.

The background-origin property allows you to specify whether the background will be positioned relative to the "content box", "border box", or the "padding box".

The background-origin property can be used in conjunction with the background-clip and background-image properties to modify the position of a background image to match the clipping effect (supplied by the background-clip property).

In CSS3, the background-origin property has been added to the background shorthand property. This means that you can set the background-origin from within the background property (for example, background: url("background.png") 40% / 10em lightblue round fixed border-box;).

The examples on this page include browser-specific properties that start with extensions such as -webkit-, -moz-, etc. This is for browser compatibility reasons. See the bottom of this article for more on this.

Syntax: background-origin: value

The formal syntax for this property is:

background-origin: <box> [ , <box> ]*

Where

<box> = border-box | padding-box | border-box

For more information, see the Possible Values section below.

Example
-webkit-background-origin: border-box; /* Safari and Chrome */
-moz-background-origin: border-box; /* Firefox */
-ms-background-origin: border-box; /* Internet Explorer */
-o-background-origin: border-box; /* Opera */
background-origin: border-box; /* CSS3 */
Note that this example includes various CSS extensions in addition to the W3C CSS3 property. This is for browser compatibility.
Try it yourself!


Possible Values:
border-box
Specifies that the background position is relative to the border box.
padding-box
Specifies that the background position is relative to the padding box.
content-box
Specifies that the background position is relative to the content box.
Initial Value: padding-box
Applies to: All elements
Inherited: No
Media: Visual
Animatable: No

Browser Compatibility

At the time of writing, CSS3 was still under development and browser support for many CSS3 properties was limited or non-existent. For maximum browser compatibility many web developers add browser-specific properties by using extensions such as -webkit- for Safari and Google Chrome, -ms- for Internet Explorer, -moz- for Firefox, -o- for Opera etc. As with any CSS property, if a browser doesn't support a proprietary extension, it will simply ignore it.

This practice is not recommended by the W3C, however in many cases, the only way you can test a property is to include the CSS extension that is compatible with your browser.

Be aware that if you choose to use the proprietary CSS extensions in a live environment, your code will not pass any W3C CSS validation, as the browser-specific properties are not valid W3C properties.

Many of the CSS3 examples on this website include these browser specific properties. If they weren't included, most of the examples wouldn't work for most users (at least, not until possibly years after the article was written).

The major browser manufacturers are working to support the W3C properties, and eventually, you will be able to omit these browser-specific properties.

Enjoy this page?

  1. Link to this page (copy/paste into your own website or blog):
  2. Link to Quackit using one of these banner ads.

Thanks for supporting Quackit!