Logical Properties and Values specification defines flow-relative mappings for the various margin, border, and padding properties and their shorthands. In this guide we take a look at these.
If you have looked at the main page for CSS Logical Properties and Values you will see there are a huge number of properties listed. This is mostly due to the fact that there are four longhand values each for margin, border, and padding side, plus all the shorthand values.
The specification details mappings for each logical value to a physical counterpart. In the table below I have given these mapped values assuming that the
writing-mode
in use is
horizontal-tb
— with a left to right direction. The inline direction therefore runs horizontally — left to right — and
margin-inline-start
would be equivalent to
margin-left
.
If you were using a
horizontal-tb
writing mode with a right-to-left text direction then
margin-inline-start
would be the same as
margin-right
, and in a vertical writing mode it would be the same as using
margin-top
.
There are also some additional shorthands, made possible because we have the ability to target both block or both inline edges of the box simultaneously. These shorthands have no physical equivalent.
| Property | 目的 |
|---|---|
border-block
|
集
border-color
,
border-style
,和
border-width
for both block borders.
|
border-block-color
|
集
border-color
for both block borders.
|
border-block-style
|
集
border-style
for both block borders.
|
border-block-width
|
集
border-width
for both block borders.
|
border-inline
|
集
border-color
,
-style
,和
-width
for both inline borders.
|
border-inline-color
|
集
border-color
for both inline borders.
|
border-inline-style
|
集
border-style
for both inline borders.
|
border-inline-width
|
集
border-width
for both inline borders.
|
margin-block
|
Sets all the block
margin
s.
|
margin-inline
|
Sets all the inline
margin
s.
|
padding-block
|
Sets the block
padding
.
|
padding-inline
|
Sets the inline
padding
.
|
The mapped margin properties of
margin-inline-start
,
margin-inline-end
,
margin-block-start
,和
margin-inline-end
can be used instead of their physical counterparts.
In the example below I have created two boxes and added different sized margins to each edge. I have added an extra container with a border in order to make the margin more obvious to see.
One box uses physical properties and the other logical properties. Try changing the
direction
property to
rtl
to cause the boxes to display in a right-to-left direction, the margins on the first box will stay in the same place, while the margins on the inline dimension of the second box will switch.
You can also try changing the
writing-mode
from
horizontal-tb
to
vertical-rl
. Again, notice how the margins stay in the same place for the first box, but switch around to follow the text direction in the second.
As we can now target both sides of a box — either both inline sides or both block sides — there are new shorthands available,
margin-inline
and
margin-block
, which accept two values. The first value will apply to the start of that dimension, the second to the end. If you only use one value it is applied to both.
In a horizontal writing mode this CSS would apply a 5px margin to the top of the box and a 10px margin to the bottom.
.box {
margin-block: 5px 10px;
}
注意
: The shorthand properties
margin-inline
and
margin-block
shipped in Firefox 66. As these are new properties check browser support before using.
The mapped padding properties of
padding-inline-start
,
padding-inline-end
,
padding-block-start
,和
padding-inline-end
can be used instead of their physical counterparts.
In the example below I have two boxes, one of which is using physical padding properties and the other logical padding properties. With a
writing-mode
of
horizontal-tb
, both boxes should appear the same.
Try changing the
direction
property to
rtl
to cause the boxes to display in a right-to-left direction. The padding on the first box will stay in the same place, whereas the padding on the inline dimension of the second box will switch.
You can also try changing the
writing-mode
from
horizontal-tb
to
vertical-rl
. Again, notice how the padding stays in the same place for the first box, but switches around to follow the text direction in the second.
As with margin, there are two-value shorthands for padding —
padding-inline
and
padding-block
— which allow you to set the padding of the two inline, and two block dimensions, respectively.
In a horizontal
writing-mode
this CSS would apply
5px
of padding to the top of the box and 10px of padding to the bottom:
.box {
padding-block: 5px 10px;
}
注意
: The shorthand properties
padding-inline
and
padding-block
shipped in Firefox 66. As these are new properties check browser support before using.
The border properties are the main reason that Logical Properties and Values seems to have so many properties, as we have the longhands for the color, width, and style of the border on each side of a box, along with the shorthand to set all three at once for each side. As with margin and padding we have a mapped version of each physical property.
The demo below uses some longhands and three shorthand values. As with the other demos try changing the
direction
property to
rtl
to cause the boxes to display in a right-to-left direction, or changing the
writing-mode
from
horizontal-tb
to
vertical-rl
.
There are two-value shorthands to set the width, style and, color of the block or inline dimension, and two-value shorthands to set all three values in the block or inline dimension. The below code, in a horizontal writing mode, would give you a 2px green solid border on the top and bottom of the box, and a 4px dotted purple border on the left and right.
.box {
border-block: 2px solid green;
border-inline-width: 4px;
border-inline-style: dotted;
border-inline-color: rebeccapurple;
}
注意 : these two value shorthands shipped in Firefox 66, check browser support before using as other browsers may not have implemented them yet.
The specification has fairly recently added flow-relative values for the
border-radius
longhands. These have not yet been implemented by any browser. The below example, in a horizontal
writing-mode
, would set the top-right border radius to 1em, the bottom-right to 0, the bottom-left to 20px and the top-left to 40px.
.box {
border-end-start-radius: 1em;
border-end-end-radius: 0;
border-start-end-radius: 20px;
border-start-start-radius: 40px;
}
The specification makes a suggestion for the four-value shorthands such as the
margin
property, however the final decision on how this should be indicated is as yet unresolved, and is discussed in
this issue
.
Using any four-value shorthand such as margin, padding, or border will currently use the physical versions, so if following the flow of the document is important, use the longhand properties for the time being.
block-size
border-block
border-block-color
border-block-end
border-block-end-color
border-block-end-style
border-block-end-width
border-block-start
border-block-start-color
border-block-start-style
border-block-start-width
border-block-style
border-block-width
border-end-end-radius
border-end-start-radius
border-inline
border-inline-color
border-inline-end
border-inline-end-color
border-inline-end-style
border-inline-end-width
border-inline-start
border-inline-start-color
border-inline-start-style
border-inline-start-width
border-inline-style
border-inline-width
border-start-end-radius
border-start-start-radius
inline-size
inset
inset-block
inset-block-end
inset-block-start
inset-inline
inset-inline-end
inset-inline-start
margin-block
margin-block-end
margin-block-start
margin-inline
margin-inline-end
margin-inline-start
max-block-size
max-inline-size
min-block-size
min-inline-size
padding-block
padding-block-end
padding-block-start
padding-inline
padding-inline-end
padding-inline-start