简写特性 are CSS properties that let you set the values of multiple other CSS properties simultaneously. Using a shorthand property, you can write more concise (and often more readable) style sheets, saving time and energy.
The CSS specification defines shorthand properties to group the definition of common properties acting on the same theme. For instance, the CSS
background
property is a shorthand property that's able to define the values of
background-color
,
background-image
,
background-repeat
,和
background-position
. Similarly, the most common font-related properties can be defined using the shorthand
font
, and the different margins around a box can be defined using the
margin
shorthand.
Even if they are very convenient to use, there are a few edge cases to keep in mind when using them:
background-color: red; background: url(images/bg.gif) no-repeat left top;will not set the color of the background to
red
but to
background-color
's default,
transparent
, as the second rule has precedence.
inherit
can be applied to a property, but only as a whole, not as a keyword for one value or another. That means that the only way to make some specific value to be inherited is to use the longhand property with the keyword
inherit
.
border-style
,
margin
or
padding
, always use a consistent 1-to-4-value syntax representing those edges:
|
The 1-value syntax
:
border-width: 1em
— The unique value represents all edges
|
|
The 2-value syntax
:
border-width: 1em 2em
— The first value represents the vertical, that is top and bottom, edges, the second the horizontal ones, that is the left and right ones.
|
|
The 3-value syntax
:
border-width: 1em 2em 3em
— The first value represents the top edge, the second, the horizontal, that is left and right, ones, and the third value the bottom edge
|
|
The 4-value syntax
:
border-width: 1em 2em 3em 4em
— The four values represent the top, right, bottom and left edges respectively, always in that order, that is clock-wise starting at the top (The initial letter of Top-Right-Bottom-Left matches the order of the consonant of the word
trouble
: TRBL) (You can also remember it as the order that the hands would rotate on a clock:
1em
starts in the 12 o'clock position, then
2em
in the 3 o'clock position, then
3em
in the 6 o'clock position, and
4em
in the 9 o'clock position).
|
border-radius
, always use a consistent 1-to-4-value syntax representing those corners:
|
The 1-value syntax
:
border-radius: 1em
— The unique value represents all corners
|
|
The 2-value syntax
:
border-radius: 1em 2em
— The first value represents the top left and bottom right corner, the second the top right and bottom left ones.
|
|
The 3-value syntax
:
border-radius: 1em 2em 3em
— The first value represents the top left corner, the second the top right and bottom left ones, and the third value the bottom right corner
|
|
The 4-value syntax
:
border-radius: 1em 2em 3em 4em
— The four values represent the top left, top right, bottom right and bottom left corners respectively, always in that order, that is clock-wise starting at the top left.
|
A background with the following properties ...
background-color: #000; background-image: url(images/bg.gif); background-repeat: no-repeat; background-position: left top;
... can be shortened to just one declaration:
background: #000 url(images/bg.gif) no-repeat left top;
(The shorthand form is actually the equivalent of the longhand properties above plus
background-attachment: scroll
and, in CSS3, some additional properties.)
见
background
for more detailed information, including CSS3 properties.
The following declarations ...
font-style: italic; font-weight: bold; font-size: .8em; line-height: 1.2; font-family: Arial, sans-serif;
... can be shortened to the following:
font: italic bold .8em/1.2 Arial, sans-serif;
This shorthand declaration is actually equivalent to the longhand declarations above plus
font-variant: normal
and
font-size-adjust: none
(CSS2.0 / CSS3),
font-stretch: normal
(CSS3).
With borders, the width, color, and style can be simplified into one declaration. For example, the following CSS ...
border-width: 1px; border-style: solid; border-color: #000;
... can be simplified as:
border: 1px solid #000;
Shorthand versions of margin and padding values work similarly; the margin property allows for shorthand values to be specified using one, two, three, or four values. The following CSS declarations ...
margin-top: 10px; margin-right: 5px; margin-bottom: 10px; margin-left: 5px;
... are the same as the following declaration using the four value shorthand. Note that the values are in clockwise order, beginning at the top: top, right, bottom, then left (TRBL, the consonants in "trouble").
margin: 10px 5px 10px 5px;
Margin shorthand rules for one, two, three and four value declarations are:
CSS provides a universal shorthand property,
all
, which applies its value to every property in the document. Its purpose is to change the properties' inheritance model to one of:
CSS provides four special universal property values for controlling inheritance. Every CSS property accepts these values.
inherit
Sets the property value applied to a selected element to be the same as that of its parent element. Effectively, this "turns on inheritance".
initial
unset
inherit
, otherwise it acts like
initial
.
注意
: There is also a newer value,
revert
, which has limited browser support.
注意 : See Origin of CSS declarations in Introducing the CSS Cascade for more information on each of these and how they work.
We can look at a list of links and explore how the universal values work. The live example below allows you to play with the CSS and see what happens when you make changes. Playing with code really is the best way to get to grips with HTML and CSS.
例如:
my-class-1
applied. This sets the color of the
<a>
element nested inside to inherit. If you remove the rule how does it change the color of the link?
<a>
element — for example
a { color: red; }
?
见 Cascade and inheritance or Introducing the CSS Cascade for more information about how inheritance works in CSS.
animation
,
background
,
border
,
border-bottom
,
border-color
,
border-left
,
border-radius
,
border-right
,
border-style
,
border-top
,
border-width
,
column-rule
,
columns
,
flex
,
flex-flow
,
font
,
grid
,
grid-area
,
grid-column
,
grid-row
,
grid-template
,
list-style
,
margin
,
offset
,
outline
,
overflow
,
padding
,
place-content
,
place-items
,
place-self
,
text-decoration
,
transition