Copyright © 2010 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
This CSS Image Values and Replaced Content module has two parts: First, it defines the syntax for <image> values in CSS. <image> values can be a single URI to an image, a list of URIs denoting a series of fallbacks, a reference to an element in the document, or gradients. Second, it defines properties used to control the interaction of replaced content and the CSS layout algorithms. These properties can affect the used image resolution for bitmaps, the replaced object's orientation, and whether and how to preserve the object's aspect ratio.
This is a public copy of the editors' draft. It is provided for discussion only and may change at any moment. Its publication here does not imply endorsement of its contents by W3C. Don't cite this document other than as work in progress.
The (archived) public mailing list www-style@w3.org (see instructions) is preferred for discussion of this specification. When sending e-mail, please put the text “css3-images” in the subject, preferably like this: “[css3-images] …summary of comment…”
This document was produced by the CSS Working Group (part of the Style Activity).
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
This section is non-normative.
In CSS Levels 1 and 2, image values, such as those used in the
‘background-image’ property,
could only be given by a single URI value. This module introduces
additional notations that allow a 2D image to be given as a list of URIs
denoting fallbacks, as a reference to an element in the document, and as
a gradient.
A document or implementation cannot conform to CSS Image Values Level 3 alone, but can claim conformance to CSS Image Values Level 3 if it satisfies the conformance requirements in this specification when implementing CSS or another host language that normatively references this specification.
Conformance to CSS Namespaces is defined for two classes:
The conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification. All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [RFC2119]
Examples in this specification are introduced with the words "for
example" or are set apart from the normative text with
class="example", like this:
This is an example of an informative example.
Informative notes begin with the word "Note" and are set apart from the
normative text with class="note", like this:
Note, this is an informative note.
This specification defines the following units as part of the <resolution> value type:
px’ unit
The default resolution of raster images in CSS is
‘1dppx’.
The <image> value type denotes a 2D image. It is defined as
<image> = <url> | <image-list> | <gradient> | <element-reference>
Image values can be used in many CSS properties, including the
‘background-image’, ‘list-style-image’, ‘cursor’ properties [CSS21].
url()’ notationThe simplest way to indicate an image is to reference an image file by
URI. This is done with the ‘url()’ notation, defined in [CSS21].
In the example below, a background image is specified with
‘url()’ syntax:
background-image: url(wavy.png);
A portion of an image may be referenced (clipped out and used as a standalone image) by use of fragment identifiers. Need a spec to reference here. Expecting to get one from Media Fragments WG.
For example,
background-image: url('logos.png#xywh=10,30,60,20')
uses the 60 pixel by 20 pixel rectangle of logos.png
beginning at the point 10 pixels in from the left, 30 pixels down from
the top.
Note that quotation marks are required here, because
unquoted commas are not allowed in ‘url()’ syntax.
image()’ notationThe ‘image()’ notation allows an
author to specify multiple images, each one a fallback for the previous.
The UA must use only the first image that it can load and display. The
syntax for ‘image()’ is defined as
<image-list> = image( [ <image-decl> , ]* [ <image-decl> | <color> | <gradient> | <element-reference> ] )
where <image-decl> is given by
<image-decl> = [ <string> | <url-token> ] [ snap? && <resolution> ]?
<url-token> is given as
[!#$%&*-~]|{nonascii}|{escape} (i.e. the contents of
‘url()’) using the productions in the
CSS2.1
tokenization. The <url-token> must not contain
unescaped brackets, commas, white space characters, single quotes (') or
double quotes ("); if it does the ‘image()’ containing it is invalid.
Each string or url-token represents the URI of an image. If a
resolution is given, then the image must be rendered at the specified
resolution. If the ‘snap’ keyword is
also specified, and the image is a raster image, then the image must be
rendered at the resolution closest to the specified resolution that
would result in no pixel rounding. I don't think "no
pixel rounding" is the right terminology here... basically we want to
avoid blurry images.
The optional color at the end of the list is the fallback color. It is used if, and only if, none of the images can be loaded and displayed (e.g. because they are in unsupported formats, or cannot be found, or are corrupted in some way, or because image loading is disabled in the UA). It is treated as a single-color image with no intrinsic dimensions.
For example, the rule below would tell the UA to load ‘wavy.svg’ if it can; failing that to load
‘wavy.png’ and display it at 150dpi;
failing that to display ‘wavy.gif’;
and finally, if none of the images can be loaded and displayed, to use
the color ‘blue’ to create a
dimensionless background image.
background-image: image(wavy.svg, 'wavy.png' 150dpi, "wavy.gif", blue);
The ‘background-image’
property specifies that dimensionless images must stretch to cover the
entire background positioning area [CSS3BG], so if none of the
specified images can be displayed the background will be painted blue.
As with any image, this fallback will be painted over the ‘background-color’ (if any).
If the URL for the image ends in a file extension (a period followed
by letters) of four ascii letters ([a-zA-Z]) or less, then the UA
may skip trying to load images whose file extension matches an
image format it knows it does not support. For example, a UA that knows
it supports JPEG and GIF, but expects to encounter many PNG and SVG
images may choose to skip over images with filenames ending in
‘.png’ or ‘.svg’ without loading them to check their MIME
type. However it must not skip over images with filenames ending in
extensions it doesn't recognize.
element()’ notationThe ‘element()’ function allows an
author to reference an element in the document that should be used as an
image. As the referenced element changes, for example, by the user
typing into a <textarea> element or a script drawing into a
<canvas> element in HTML, the image produced by the ‘element()’ function stays in sync, allowing
dynamic effects such as script-animated background images or previews of
the next slide in a slideshow. The syntax for ‘element()’ is defined as:
<element-reference> = element( [<id-selector> | <identifier> ] )
where <id-selector> is an ID selector [SELECT], and <identifier> is an identifer [CSS3VAL].
If the argument to the ‘element()’
function is an ID selector, the function references the element matched
by the selector. If it's an identifier, the function references the
element who's CSS element
reference identifier is the identifier. (CSS does not define how
an element acquires a ‘CSS element
reference identifier’; that is determined by the host
language.) If no element in the document matches the selector, or no
element has the identifier as its ‘CSS element
reference identifier’, the function represents a fully
transparent image with no intrinsic dimensions, equivalent to
image(transparent). Otherwise, the function represents an
image with width and height equal to the width and height of the
referenced element, with an appearance exactly equivalent to that of the
referenced element. Whether or not the referenced element is currently
being rendered on-screen, for media types where this is relevant, must
not affect the appearance of the image represented by the function; the
image must always be equivalent to how the element would appear when
rendered on-screen. If the document changes so that which element is
matched, or whether an element is matched at all, changes, the image
represented by the function must change accordingly.
If the argument passed to ‘element()’ isn't an ID selector or an ident, it
is a syntax error.
A gradient is an image that smoothly fades from one color to another.
These are commonly used for subtle shading in background images,
buttons, and many other things. The two functions described in this
section allow an author to specify such an image in a terse syntax, so
that the UA can generate the image automatically when rendering the
page. Gradients are a type of image, and can be used anywhere an image
can, such as in the background-image or
list-style-image properties. For official purposes, the
syntax of a <gradient> is:
<gradient> = [ <linear-gradient> | <radial-gradient> ]
where <linear-gradient> and <radial-gradient> are
defined in their applicable sections below.
As with the other <image> types defined in this specification, gradients can be used in any property that accepts images. For example:
background: linear-gradient(white, gray);
list-style-image: radial-gradient(circle, #006, #00a 90%,
#0000af 100%, white 100%)
In many places this section references a box, such as "the
box's top-left corner" or "the box's right side". In all of these
circumstances, the "box" refers to the ‘CSS View Box’ (see
the "Sizing Images and Objects in CSS" section of this spec for
clarification). A gradient has no intrinsic dimensions. This means that,
for example, if you use a gradient in a background-image, the "box" will
simply be the size of the background area. If you use a gradient in a
list-style-image, the "box" will be a 1em square.
A linear gradient is created by specifying a gradient-line and then several colors placed along that line. The image is constructed by creating an infinite canvas and painting it with lines perdendicular to the gradient-line, with the color of the painted line being the color of the gradient-line where the two intersect. This produces a smooth fade from each color to the next, progressing in the specified direction.
linear-gradient() syntax<linear-gradient> = linear-gradient(
[
[ [top | bottom] || [left | right] ]
||
<angle>
,]?
<color-stop>[, <color-stop>]+
);
The first argument to the function specifies the
gradient-line, which gives the gradient a direction
and determines how color-stops are positioned. It may be omitted; if
so, it defaults to "top".
The gradient-line may be specified in two different ways. The first is by specifying the angle the gradient-line should assume; this uses the standard algebraic notation for angles where 0deg points to the right, 90deg points up, and positive angles go counterclockwise. The starting-point and ending-point of the gradient-line are determined by extending a line in both direction from the center of the box at the angle specified. In the direction of the angle, the ending-point is the point on the gradient-line line where a line drawn perpendicular to the gradient-line would intersect the corner of the box in that direction. The starting-point is determined identically, except in the opposite direction of the angle.
The second way is to simply provide a side or corner of the box that
the gradient should start at; the gradient will then automatically
angle itself to extend from the specified side or corner to the
opposite side or corner in a straight line. To be precise, the
gradient is converted to the angle form described in the previous
paragraph at used-value time. If a left,
bottom, right, or top is given,
the used value of the gradient is 0deg, 90deg, 180deg, or 270 deg,
respectively. If a corner is given, the used value of the gradient is
the angle necessary to place the starting-point of the gradient in
that corner of the box.
The gradient's color stops are typically placed between the starting-point and ending-point on the gradient-line, but this isn't required - the gradient-line extends infinitely in both directions. The starting-point and ending-point are merely arbitrary distance markers - the starting-point defines where 0%, 0px, etc are located when specifying color-stops, and the ending-point defines where 100% is located. Color stops are allowed to have positions before 0% or after 100%.
All of the following linear-gradient() examples are
presumed to be backgrounds applied to a box that is 200px wide and
100px tall.
Below are various ways of specifying a basic vertical gradient:
linear-gradient(yellow, blue);
linear-gradient(top, yellow, blue);
linear-gradient(bottom, blue, yellow);
linear-gradient(-90deg, yellow, blue);
linear-gradient(270deg, yellow, blue);
linear-gradient(top, yellow 0%, blue 100%);

This gradient goes from the upper-left to the lower-right corner.
linear-gradient(top left, yellow, blue);

This demonstrates the use of an angle in the gradient. Compare this image with the previous example. In both gradients, the top-left of the box is pure yellow, and the bottom-right of the box is pure blue. The difference is in the angle that the gradient follows.
linear-gradient(-45deg, yellow, blue);
linear-gradient(315deg, yellow, blue);

This demonstrates a 3-color gradient, and how to specify the location of a stop explicitly:
linear-gradient(yellow, blue 20%, #0f0);

In a radial gradient, rather than colors smoothly fading from one side of the box to the other as with linear gradients, they instead emerge from a single point and smoothly spread outward in a circular or elliptical shape.
A radial gradient is specified by first pinpointing the center of the gradient, where the 0% ellipse will be, then specifying the size and shape of the 100% ellipse, ending with a list of color-stops just like a linear-gradient. Between the center and the ending-ellipse, and past the ending-ellipse, concentric ellipses are drawn and colored according to the specified color-stops.
radial-gradient() Syntax<radial-gradient> = radial-gradient(
[<bg-position>,]?
[
[<shape> || <size>]
|
[<length> | <percentage>]{2}
,]?
<color-stop>[, <color-stop>]+
)
The first argument to the function specifies the center of the
ellipse. <bg-position> is taken from the Backgrounds
and Borders Module, and has the same definition. It specifies the
center of the gradient. If omitted, it defaults to center.
Color-stop positions are measured along an imaginary line extending
from the center of the gradient to the right.
The second argument to the function specifies the size and shape of the ending-ellipse. This can be specified in two ways, with different characteristics:
The size and shape of the ending-ellipse can be defined
implicitly with a size and shape keyword. The <shape> is defined as
<shape> = [ circle | ellipse ]
circle indicates that the ending-ellipse will be a
circle with a constant radius. ellipse indicates that
the gradient-shape will be an axis-aligned ellipse (that is, its
major and minor radiuses will be horizontal and vertical, not
necessarily in that order).
The <size>keyword is defined
as
<size> = [ closest-side | closest-corner | farthest-side | farthest-corner | contain | cover ]
If <shape> is circle and
<size> is closest-side, the
ending-shape is a circle sized so that it exactly meets the side of
the box closest to its center. For example, if the box was 100px wide
and 200px tall, and the starting-point of the gradient-line was
'10% 10%', then the closest side is the left side of the
box (it is 10px from the starting-point, while the top is 20px from
it, and the right and bottom sides are much further). The
gradient-shape would be a circle with a radius of 10px. If
<shape> is ellipse and
<size> is closest-side, the
gradient-shape is an ellipse sized so that it exactly meets the
vertical and horizontal sides of the box closest to its center. Using
the same box and starting-point as the previous example, the
gradient-shape would be an ellipse with a 20px vertical radius and a
10px horizontal radius. (If necessary, such as if the starting-point
is outside of the box, extend the sides of the box so that there is a
line the ellipse can meet.)
farthest-side is identical to
closest-side, except that the gradient-shape is sized to
meet the side of the box that is farthest from its center (or the
farthest vertical and horizontal sides, in the case of
ellipse). closest-corner and
farthest-corner size the gradient-shape so that it
exactly meets the closest or farthest corner of the box from its
center, respectively. If <shape> is
ellipse, the gradient-shape has the same ratio of width
to height that it would if closest-side or
farthest-side were specified, as appropriate.
contain is a synonym for closest-side, and
cover is a synonym for farthest-corner.
If this implicit form is used, then it is converted to an equivalent explicit form (described below) at used-value time.
Alternately, the ending-shape's size and shape can be defined explicitly, by providing two lengths or percentages. These measure the length of the horizontal and vertical axes of the ellipse, respectively. (The axis length is the length from the center of the ellipse to the edge, similar to the radius of a circle, not the diameter.)
Percentages used in the first value are relative to the width of the box, while percentages used in the second value are relative to the height of the box.
Both of the values must be positive - specifying either as zero or negative is a syntax error.
If this argument is omitted, it defaults to ellipse
cover.
In certain circumstances the given parameters may define a degenerate
shape - a circle or ellipse with a radius of 0. In these instances the
gradient image is just a solid color equal to the color of the last
color-stop in the rule. The following combinations of values will
trigger this: closest-side if the starting-point is on a
box edge, closest-corner if the starting-point is on a box
corner, and ellipse and closest-corner if the
starting-point is on a box edge.
The ending-point of the gradient-line is determined by extending a
line from the starting-point in the direction specified by the
<angle> in the first argument. The ending-point is
where this line intersects the gradient-shape.
<color-stop> is
defined identically to its treatment in linear-gradient().
Color-stops are placed on an imaginary line extending from the center
of the gradient, with the 0% point at the center of the gradient, and
100% at the point where the line intersects the ending-ellipse. The
color of each ellipse is equal to the color of the line where the
ellipse intersects it. Distances past 100% can be specified, and simply
indicate a color-stop placed on the line a corresponding distance from
the center. Negative distances are allowed in a radial gradient and
work the same as in linear gradients with respect to setting the color
of the gradient-line, but colors before the starting-point of the
gradient-line are not displayed. For example, radial-gradient(red
-50px, yellow 100px) would produce an elliptical gradient which
starts with a reddish-orange color in the center (the color 1/3 between
red and yellow) and transitions to yellow at 100px wide.
All of the following examples are applied to a box that is 200px wide and 100px tall.
These examples demonstrate the basic syntax for radial gradients:
radial-gradient(yellow, green);
radial-gradient(center, ellipse cover, yellow 0%, green 100%);
radial-gradient(50% 50%, farthest-corner, yellow, green);

radial-gradient(circle, yellow, green);

radial-gradient(red, yellow, green);

This image shows a gradient originating from somewhere other than the center of the box:
radial-gradient(bottom left, farthest-side, red, yellow 50px, green);

Here we illustrate a ‘contain’ gradient.
radial-gradient(20px 30px, contain, red, yellow, green);
radial-gradient(20px 30px, 20px 30px, red, yellow, green);

radial-gradient(20px 30px, circle contain, red, yellow, green);
radial-gradient(20px 30px, 20px 20px, red, yellow, green);

color-stop SyntaxThe <color-stop> is
defined as:
<color-stop> = <color> [ <percentage> | <length> ]?
Color-stops are points placed along the line defined by the gradient-line at the beginning of the rule. Color-stops must be specified in order. Percentages refer to the length of the gradient-line, with 0% being at the starting point and 100% being at the ending point. Lengths are measured from the starting-point in the direction of the ending-point. Color-stops are usually placed between the starting-point and ending-point, but that's not required; the gradient-line extends infinitely in both directions, and a color-stop can be placed at any position on the line.
At each color-stop, the line is the color of the color-stop. Between two color-stops, the line's color is linearly interpolated between the colors of the two color-stops, with the interpolation taking place in premultiplied RGBA space. Before the first color-stop, the line is the color of the first color-stop. After the last color-stop, the line is the color of the last color-stop.
The following steps must be applied in order to process the list of color-stops. After applying these rules, all color-stops will have a definite position and they will be in ascending order:
If multiple color-stops have the same position, they produce an infinitesimal transition from the one specified first in the rule to the one specified last. In effect, the color suddenly changes at that position rather than smoothly transitioning.
It is recommended that authors not mix different types of
units, such as px, em, or %, in a single rule, as this can cause a
color-stop to unintentionally try to move before an earlier one. For
example, the rule background-image: linear-gradient(red, yellow
100px, blue 50%) would work as expected as long as the
background area is at least 200px tall. If it was 150px tall, however,
the blue color-stop's position would be equivalent to "75px", which
precedes the yellow color-stop, and would be corrected to a position of
100px.
Images used in CSS may come from a number of sources, from defined image formats (such as gif, jpeg, etc), dedicated markup formats (such as SVG), and CSS-specific formats (such as the linear-gradient() value type defined in this specification). As well, a document may contain many other types of objects, such as video, plugins, or nested documents. These images and objects (just "objects" hereafter) may offer many types of sizing information to CSS, or none at all. This section defines generically the size negotiation model between the image or replaced content object and the CSS layout algorithms.
In order to define this handling, we must define a few terms, to make it easier to refer to various concepts:
If an object (such as an icon) has multiple sizes, then the largest size is used. If it has multiple aspect ratios of that size (or of no size), then the aspect ratio closest to the aspect ratio of the default image sizing area is use This is pretty arbitrary.
background-image, the default image sizing area is
the size of the background positioning area of the element. For
list-style-image, the default image sizing area is a 1em
square. For list-style-image, the default image sizing
area is the size of the border box of the element. In any other
context, the default image sizing area is a rectangle 300px wide and
150px tall.
Images and objects in CSS are sized as follows:
After determining the size of the CSS View Box, CSS positions it within the appropriate area according to any relevant properties, such as object-position or background-position, and asks the object to render itself using the dimensions of the CSS View Box. CSS does not define how objects render when the dimensions of the CSS View Box are different than the object's intrinsic dimensions. The object may adjust itself to match the dimensions of the CSS View Box in some way, or even render itself larger or smaller than the CSS View Box to satisfy sizing constraints of its own.
image-resolution’ propertyThe image resolution is defined as the
number of image pixels per unit length, e.g., pixels per inch. Some
image formats can record information about the resolution of images.
This information can be helpful when determining the actual size of the
image in the formatting process. However, the information can also be
wrong, in which case it should be ignored. By default, CSS assumes a
resolution of one image pixel per CSS ‘px’ unit; however, the ‘image-resolution’ property allows using
some other resolution.
| Name: | image-resolution |
|---|---|
| Value: | from-image || <dpi> |
| Initial: | ‘1dppx’
|
| Applies to: | replaced elements and background images? |
| Inherited: | yes |
| Percentages: | N/A |
| Media: | visual |
| Computed value: | as specified |
The ‘image-resolution’ property specifies the
resolution of images. Values have the following meanings:
from-image’, the specified resolution is
only used if the image does not have a resolution.
1dppx’ if none is
given.
This rule specifies that the UA should use the image resolution found
in the image itself, falling back to 1 image pixel per CSS ‘px’ unit
img { image-resolution: from-image }
Using this rule, the image resolution is set to 300dpi and the resolution in the image, if any, is ignored.
img { image-resolution: 300dpi }
These rules both specify that the UA should use the image resolution found in the image itself. If the image has no resolution, the resolution is set to 300dpi.
img { image-resolution: from-image 300dpi }
img { image-resolution: 300dpi from-image }
image-orientation’ propertyImages from camera phones, digital cameras or scanners may be encoded sideways. For example, the first row of image data may represent the leftmost or rightmost column of image pixels. Furthermore, often such devices have limited resources, and do not have the capability to rotate the image into an upright orientation. However, this type of device may have internal knowledge or can accept input from its user as to the rotational correction to perform.
The image-orientation property provides a way to specify an "out-of-band" rotation to be applied to image source data. This facility is not intended to specify layout transformations such as arbitrary rotation or flipping the image in the horizontal or vertical direction. It is not needed to correctly orient an image when printing in landscape versus portrait orientation, as that rotation is done as part of layout. It should only be used to correct incorrectly-oriented images.
| Name: | image-orientation |
|---|---|
| Value: | <angle> |
| Initial: | 0deg |
| Applies to: | images |
| Inherited: | N/A |
| Percentages: | N/A |
| Media: | visual |
| Computed value: | normalized angle (‘0deg’,
‘90deg’, ‘180deg’, or ‘270deg’)
|
‘image-orientation’ specifies an
orthogonal rotation to be applied to an image before it is laid out. CSS
layout processing applies to the image after rotation. This implies, for
example:
The following values for the ‘image-orientation’ property apply
to an image:
The following example rotates the image 90 degrees clockwise:
img.ninety { image-orientation: 90deg }
...
<img class="ninety" src=... />
object-fit’
Property| Name: | object-fit |
|---|---|
| Value: | fill | contain | cover |
| Initial: | fill |
| Applies to: | replaced elements |
| Inherited: | yes |
| Percentages: | N/A |
| Media: | visual |
| Computed value: | specified value |
The ‘object-fit’ property specifies how the
contents of a replaced element should be scaled relative to the box
established by its used height and width. It also enables scaling a
replaced element's contents up to a specified maximum size or down to a
specified minimum size while preserving its aspect ratio.
Not all replaced elements can be scaled, but images typically can.
The contents of a replaced element with an intrinsic aspect ratio (which may be derived from intrinsic dimensions) are scaled as follows:
height’
and ‘width’ as usual. Scale the content height
and width independently so that the edges of the content just meet the
edges of the box established by the used ‘height’ and ‘width’.
height’
and ‘width’ as usual, except if both ‘height’ and ‘width’ are ‘auto’, and the used value of at least one
of ‘max-width’ and ‘max-height’ is not ‘none’, then compute the element's used
width and used height as though the intrinsic dimensions of the
contents were infinitely large numbers whose ratio is the actual
intrinsic ratio of the contents.
height’
and ‘width’ as usual, except if both ‘height’ and ‘width’ are ‘auto’, and the used value of at least one
of ‘min-width’ and ‘min-height’ is not ‘0’, then compute the used width and used height
of the element as though the intrinsic dimensions of the contents were
infinitesimally small numbers whose ratio is the actual intrinsic ratio
of the contents.
The ‘overflow’ property
determines how to render parts of the replaced element's content that
extend beyond the edges of its box. See the ‘object-position’ property for
positioning the object with respect to the element's box.
UAs may support ‘image-fit’ as
an alias for ‘object-fit’ when parsing CSS
declarations if they need to accommodate existing content that uses the
‘image-fit’ property name.
Note: the ‘object-fit’ property has similar
semantics to the fit attribute in [SMIL10].

An example showing how each of the four values of
‘object-fit’ causes the replaced element
(blue figure) to be scaled to fit its height/width box (shown with a
green background), with overflow ‘visible’ and ‘hidden’, using the initial value for
‘object-position’.
object-position’ Property| Name: | object-position |
|---|---|
| Value: | [ [ <percentage> | <length> | left | center | right ] [ <percentage> | <length> | top | center | bottom ]? ] | [ [ left | center | right ] || [ top | center | bottom ] ] |
| Initial: | 50% 50% |
| Applies to: | replaced elements |
| Inherited: | yes |
| Percentages: | refer to width and height of box itself |
| Media: | visual |
| Computed value: | specified value |
The ‘object-position’ property determines the
alignment of the replaced element inside its box. The values have the
same meaning as the values for the ‘background-position’ property, using the
image as the image and the content box as the positioning area. [CSS21]
Note that areas of the box not covered by the replaced element will show the element's background.
UAs may support ‘image-fit’ as
an alias for ‘object-fit’ when parsing CSS
declarations if they need to accommodate existing content that uses the
‘image-fit’ property name.
This section describes the serialization of all new properties and value types introduced in this specification, for the purpose of interfacing with the CSS Object Model [CSSOM].
All of these algorithms refer to a variable "s". For each, let s initially be the empty string, run the steps described, and then return s.
The serialization of the ‘<resolution>’ value type is defined in
the CSSOM spec.
This spec defines several new units for resolutions. These can all be converted to the canonical "dpcm" unit that CSSOM defines the serialization in terms of.
url()’
notationThe serialization of the url() function is defined in the CSSOM spec.
image()’ /
‘<image-list>’ notationTo serialize an ‘<image-list>’:
To serialize an ‘<image-decl>’:
snap’ keyword was
provided, append a space " " and the literal string "snap" to s.
element()’
/ ‘<element-reference>’ notationTo serialize an ‘<element-reference>’:
To serialize a ‘<linear-gradient>’:
To serialize a ‘<radial-gradient>’:
To serialize a ‘<color-stop>’:
To serialize the ‘image-resolution’ property:
from-image’ keyword is specified in the
property value, append "from-image" to s.
from-image’ keyword and a <resolution>
are specified, append a space " " to s.
To serialize the ‘image-orientation’ property:
To serialize the ‘object-fit’ property:
To serialize the ‘object-position’ property:
This section describes how to interpolate between new value types defined in this specification, for use with modules such as CSS Transitions and CSS Animations.
If an algorithm below simply states that two values should be "interpolated" or "transitioned" without further details, then the value should be interpolated as described by the Transitions spec. Otherwise, the algorithm may reference a variable "t" in its detailed description of the interpolation. This is a number which starts at 0 and goes to 1, and is set to a value that represents the progress through the transition, based on the duration of the transition, the elapsed time, and the timing function in use. For example, with a linear timing function and a 1s duration, after .3s t is equal to .3.
<image>’All images can be interpolated, though some special types of images (like some gradients) have their own special interpolation rules. In general terms, images are interpolated by scaling them to the size of the start image and cross-fading the two while they transition to the size of the end image.
In specific terms, at each point in the interpolation the image is
equal to cross-fade(<start image>, <end image>, t).
<gradient>’Gradient images can be interpolated directly in CSS transitions and animations, smoothly animating from one gradient to another. There are only a few restrictions on what gradients are allowed to be interpolated:
If the two gradients satisfy both of those constraints, they must be interpolated as described below. If not, they must be interpolated as a generic image.