Value definition syntax
CSS value definition syntax, a formal grammar, is used to define the set of valid values for a CSS property or function. In addition to this syntax, the set of valid values can be further restricted by semantic constraints (for example, for a number to be strictly positive).
The definition syntax describes which values are allowed and the interactions between them. A component can be a keyword, some characters considered as a literal, or a value of a given CSS data type or another CSS property.
Component value types
Keywords
Generic keywords
A keyword with a predefined meaning appears literally, without quotation marks. For example: auto
, smaller
, or ease-in
.
The specific case of inherit
, initial
and unset
All CSS properties accept the keywords inherit
, initial
, and unset
. They are not shown in the value definition and are implicitly defined.
Literals
In CSS, a few characters can appear on their own, like the slash (/
) or the comma (,
), and are used in a property definition to separate its parts. The comma is often used to separate values in enumerations, or parameters in mathematical-like functions; the slash often separates parts of the value that are semantically different, but have a common syntax. Typically, the slash is used in shorthand properties; to separate components of the same type, but belong to different properties.
Both symbols appear literally in a value definition.
Data types
Basic data types
Some data types are used throughout CSS and are defined once for all values in the specification. Called basic data types, they are represented with their name surrounded by the symbols <
and >
: <angle>
, <string>
, …
Non-terminal data types
Less common data types, called non-terminal data types, are also surrounded by <
and >
.
Non-terminal data types are of two kinds:
- data types sharing the same name of a property, put between quotes. In this case, the data type shares the same set of values as the property. They are often used in the definition of shorthand properties.
- data types not sharing the same name of a property. These data types are very close to the basic data types. They only differ from the basic data types in the physical location of their definition. In this case, the definition is usually physically very close to the definition of the property using them.
Component value combinators
Brackets
Brackets enclose several entities, combinators, and multipliers, then transform them as a single component. They are used to group components to bypass the precedence rules.
bold [ thin && <length> ]
This example matches the following values:
bold thin 2vh
bold 0 thin
bold thin 3.5em
But not:
thin bold 3em
, asbold
is juxtaposed with the component defined by the brackets, it must appear before it.
Juxtaposition
Placing several keywords, literals, or data types, next to one another, only separated by one or several spaces, is called juxtaposition. All juxtaposed components are mandatory and should appear in the exact order.
bold <length>, thin
This example matches the following values:
bold 1em, thin
bold 0, thin
bold 2.5cm, thin
bold 3vh, thin
But not:
thin 1em, bold
, as the entities must be in the expressed orderbold 1em thin
, as the entities are mandatory; the comma, a literal, must be presentbold 0.5ms, thin
, as thems
values are not<length>
Double ampersand
Separating two or more components, by a double ampersand, &&
, means that all these entities are mandatory but may appear in any order.
bold && <length>
This example matches the following values:
bold 1em
bold 0
2.5cm bold
3vh bold
But not:
bold
, as both components must appear in the value.bold 1em bold
, as both components must appear only once.
Note: Juxtaposition has precedence over the double ampersand, meaning that bold thin && <length>
is equivalent to [ bold thin ] && <length>
. It describes bold thin <length>
or <length> bold thin
but not bold <length> thin
.
Double bar
Separating two or more components by a double bar, ||
, means that all entities are options: at least one must be present, and they may appear in any order. Typically this is used to define the different values of a shorthand property.
<'border-width'> || <'border-style'> || <'border-color'>
This example matches the following values:
1em solid blue
blue 1em
solid 1px yellow
But not:
blue yellow
, as a component must appear once at most.bold
, as it isn't a keyword allowed as a value of any of the entities.
Note: The double ampersand has precedence over the double bar, meaning that bold || thin && <length>
is equivalent to bold || [ thin && <length> ]
. It describes bold
, thin <length>
, bold thin <length>
, or thin <length> bold
but not <length> bold thin
as bold, if not omitted, must be placed before or after the whole thin && <length>
component.
Single bar
Separating two or more entities by a single bar, |
, means that all entities are exclusive options: exactly one of these options must be present. This is typically used to separate a list of possible keywords.
<percentage> | <length> | left | center | right | top | bottom
This example matches the following values:
3%
0
3.5em
left
center
right
top
bottom
But not:
center 3%
, as only one of the components must be present.3em 4.5em
, as a component must be present at most one time.
Note: The double bar has precedence over the single bar, meaning that bold | thin || <length>
is equivalent to bold | [ thin || <length> ]
. It describes bold
, thin
, <length>
, <length> thin
, or thin <length>
but not bold <length>
as only one entity from each side of the |
combinator can be present.
Component value multipliers
A multiplier is a sign that indicates how many times a preceding entity can be repeated. Without a multiplier, an entity must appear exactly one time.
Multipliers cannot be added and have precedence over all combinators.
Asterisk (*
)
The asterisk multiplier indicates that the entity may appear zero, one or several times.
bold smaller*
This example matches the following values:
bold
bold smaller
bold smaller smaller
bold smaller smaller smaller
, and so on.
But not:
smaller
, asbold
is juxtaposed, and must appear before anysmaller
keyword.
Plus (+
)
The plus multiplier indicates that the entity may appear one or several times.
bold smaller+
This example matches the following values:
bold smaller
bold smaller smaller
bold smaller smaller smaller
, and so on.
But not:
bold
, assmaller
must appear at least once.smaller
, asbold
is juxtaposed and must appear before anysmaller
keyword.
Question mark (?
)
The question mark multiplier indicates that the entity is optional, and must appear zero or one time.
bold smaller?
This example matches the following values:
bold
bold smaller
But not:
bold smaller smaller
, assmaller
must appear at most once.smaller
, asbold
is juxtaposed and must appear before anysmaller
keyword.
Curly braces ({ }
)
The curly braces multiplier, enclosing two integers separated by a comma, A and B, indicates that the entity must appear at least A times and at most B times.
bold smaller{1,3}
This example matches the following values:
bold smaller
bold smaller smaller
bold smaller smaller smaller
But not:
bold
, assmaller
must appear at least once.bold smaller smaller smaller smaller
, assmaller
must appear at most three times.smaller
, asbold
is juxtaposed and must appear before anysmaller
keyword
Hash mark (#
)
The hash mark multiplier indicates that the entity may be repeated one or more times (for example, the plus multiplier), but each occurrence is separated by a comma (',').
bold smaller#
This example matches the following values:
bold smaller
bold smaller, smaller
bold smaller, smaller, smaller
, and so on.
But not:
bold
, assmaller
must appear at least once.bold smaller smaller smaller
, as the different occurrences ofsmaller
must be separated by commas.smaller
, asbold
is juxtaposed and must appear before anysmaller
keyword.
The hash mark may optionally be followed by curly braces to indicate how many times the entity repeats.
bold smaller#{1,3}
This example matches the following values:
bold smaller
bold smaller, smaller
bold smaller, smaller, smaller
But not:
bold smaller, smaller, smaller, smaller
, assmaller
must appear at most three times.
bold smaller#{2}
This example matches the following value:
bold smaller, smaller
But not:
bold smaller
, assmaller
must appear exactly two times.
Exclamation point (!
)
The exclamation point multiplier after a group indicates that the group is required, and must produce at least one value; even if the grammar of the items within the group would otherwise allow the entire contents to be omitted, at least one component value must not be omitted.
[ bold? smaller? ]!
This example matches the following values:
bold
smaller
bold smaller
But not:
- neither
bold
norsmaller
, as one of them must appear. smaller bold
, asbold
is juxtaposed and must appear before thesmaller
keyword.bold smaller bold
, asbold
andsmaller
may only appear once.
Bracketed range notation ([min,max]
)
Some types can accept numeric values within a certain range. For example, the column-count
property can accept an integer value between positive 1 and infinity, inclusive. The corresponding syntax looks like this:
<integer [1,∞]>
Any value outside this specified range causes the whole declaration to be invalid, therefore the browser will ignore it.
The bracketed range notation [min, max]
indicates an inclusive range between a min
and max
value. This notation is used in numeric type notations and can include units, e.g. <angle [0,180deg]>
. Positive and negative Infinity (-∞ and ∞) must not have units specified. Types specified in units can have zero values specified with or without units, for example <time [0s,10s]>
or <time [0,10s]>
.
Here are some more examples:
<integer [-∞,∞]>
: Any integer from negative infinity to positive infinity.<integer [0,∞]>
: Any integer from 0 to positive infinity is valid. Negative integers are invalid.<time [0s,10s]>
or<time [0,10s]>
: Any duration from 0 to 10 seconds is valid.<integer [-∞,-1]> | <integer [1,∞]>
: Any integer except zero is valid.
Summary
Sign | Name | Description | Example |
---|---|---|---|
Combinators | |||
Juxtaposition | Components are mandatory and should appear in that order | solid <length> |
|
&& |
Double ampersand | Components are mandatory but may appear in any order | <length> && <string> |
|| |
Double bar | At least one of the components must be present, and they may appear in any order. | <'border-image-outset'> || <'border-image-slice'> |
| |
Single bar | Exactly one of the components must be present | smaller | small | normal | big | bigger |
[ ] |
Brackets | Group components to bypass precedence rules | bold [ thin && <length> ] |
Multipliers | |||
No multiplier | Exactly 1 time | solid |
|
* |
Asterisk | 0 or more times | bold smaller* |
+ |
Plus sign | 1 or more times | bold smaller+ |
? |
Question mark | 0 or 1 time (that is optional) | bold smaller? |
{min,max} |
Curly braces | At least min times, at most max times |
bold smaller{1,3} |
# |
Hash mark |
1 or more times, with each occurrence separated by a comma
(, )
|
bold smaller# |
! |
Exclamation point | Group must produce at least 1 value | [ bold? smaller? ]! |
Ranges | |||
[min,max] |
Numeric bracketed range | Specifies a numeric range | <integer [0,∞]> |
Specifications
Specification |
---|
CSS Values and Units Module Level 4 # value-defs |
See also
- CSS key concepts: