Title: CSS Box Model Module Level 3
Shortname: css-box
Level: 3
Status: ED
Work Status: Exploring
Group: csswg
ED: https://drafts.csswg.org/css-box-3/
TR: https://www.w3.org/TR/css-box-3/
Previous Version: https://www.w3.org/TR/2018/WD-css-box-3-20180802/
Abstract: This specification describes the margin and padding properties, which create spacing in and around a CSS box. It may later be extended to include borders (currently described in [[css-backgrounds-3]]).
Editor: Elika J. Etemad / fantasai, Invited Expert, http://fantasai.inkedblade.net/contact, w3cid 35400
Ignored Terms: internal table elements, block layout
spec:css-sizing-3; type:dfn; text:size
Introduction {#intro}
============
This subsection is not normative.
CSS describes how each element
and each string of text in a source document
is laid out by transforming the document tree
into a set of boxes,
whose size, position, and stacking level on the canvas
depend on the values of their CSS properties.
Note: CSS Cascading and Inheritance
describes how properties are assigned to elements in the box tree,
while [[css-display-3#intro]] describes how the document tree
is transformed into the box tree.
Each CSS box
has a rectangular content area,
a band of padding around the content,
a border around the padding,
and a margin outside the border.
The sizing properties [[css-sizing-3]],
together with various other properties that control layout,
define the size of the content area.
The box styling properties--
'padding' and its longhands,
'border' and its longhands,
and 'margin' and its longhands--
define the sizes of these other areas.
Margins and padding are defined in this module;
borders are defined in [[css-backgrounds-3]].
Note: This module originally contained
the CSS Level 3 specification prose relating to
box generation (now defined in [[css-display-3]]),
the box model (defined here),
as well as block layout (now only defined in [[CSS2]] Chapters 9 and 10).
Since its maintenance was put aside during the development of CSS2.1,
its prose was severely outdated by the time CSS2 Revision 1
was finally completed.
Therefore, the block layout portion of the prose has been retired,
to be re-synched to CSS2 and updated
as input to a new Block Layout module at some point in the future.
It is being split apart from this module
and from the CSS Display Module
both because of the practical concern that it would be a huge amount of work
and also in recognition that CSS now has multiple layout models
(Flex Layout,
Grid Layout,
Positioned Layout,
and Table Layout,
in addition to Block Layout)
which each deserve their own parallel module.
Values
This specification follows the CSS property definition conventions from [[!CSS2]]
using the value definition syntax from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the CSS-wide keywords keywords as their property value.
For readability they have not been repeated explicitly.
Module Interactions
This module replaces the definitions of the margin and padding properties
defined in [[!CSS2]] sections 8.1, 8.2, 8.3 (but not 8.3.1), and 8.4.
All properties in this module apply to the
''::first-line'' and ''::first-letter'' pseudo-elements.
The CSS Box Model {#box-model}
=================
Each box has a content area
(which contains its content--
text, descendant boxes, an image or other replaced element content, etc.)
and optional surrounding
padding,
border,
and margin areas;
the size of each area is specified by corresponding properties,
and can be zero
(or in the case of margins, negative).
The following diagram shows how these areas relate
and the terminology used to refer to the various parts of the box:
The margin, border, and padding can be broken down into
top, right, bottom, and left segments,
each of which can be controlled independently
by its corresponding property.
The perimeter of each of the four areas
(content, padding, border, and margin)
is called an “edge”,
and each edge can be broken down into
a top, right, bottom, and left side.
Thus each box has four edges
each composed of four sides:
- content edge or inner edge
-
The content edge surrounds
the rectangle given by the width and height of the box,
which often depend on the element's content
and/or its containing block size.
The four sides of the content edge together
define the box's content box.
- padding edge
-
The padding edge surrounds
the box’s padding.
If the padding has zero width on a given side,
the padding edge coincides with the content edge on that side.
The four sides of the padding edge together
define the box's padding box,
which contains both the
content
and padding areas.
- border edge
-
The border edge surrounds the box’s border.
If the border has zero width on a given side,
the border edge coincides with the padding edge on that side.
The four sides of the border edge together
define the box's border box,
which contains the box’s
content,
padding,
and border areas.
- margin edge or outer edge
-
The margin edge surrounds the box’s margin.
If the margin has zero width on a given side,
the margin edge coincides with the border edge on that side.
The four sides of the margin edge together
define the box's margin box,
which contains the all of the box’s
content,
padding,
border,
and margin areas.
The background of the content, padding, and border areas of a box
is specified by its 'background' properties.
The border area can additionally be painted with a border style
using the 'border' properties.
Margins are always transparent.
See [[css-backgrounds-3]].
When a box fragments--
is broken, as across lines or across pages, into separate box fragments--
each of its boxes
(content box, padding box, border box, margin box)
also fragments.
How the content/padding/border/margin areas react to fragmentation
is specified in [[css-break-3]]
and controlled by the 'box-decoration-break' property.
Margins {#margins}
=======
Margins surround the border edge of a box,
providing spacing between boxes.
The margin properties specify the thickness
of the margin area of a box.
The 'margin' shorthand property
sets the margin for all four sides
while the margin longhand properties only set their respective side.
This specification defines the physical 'margin' longhands;
[[css-logical-1#margin-properties]] additionally
defines flow-relative 'margin' longhands.
Both sets of properties control the same set of margins:
they are just different ways of indexing each side.
Note: Adjoining margins in block layout collapse.
See CSS2§8.3.1 Collapsing Margins
for details.
Also, margins adjoining a fragmentation break are sometimes truncated.
See [[css-break-3#break-margins]] for details.
Page-relative (Physical) Margin Properties: the 'margin-top', 'margin-right', 'margin-bottom', and 'margin-left' properties {#margin-physical}
-------------------------------------------
Name: margin-top, margin-right, margin-bottom, margin-left
Value: <> | auto
Initial: 0
Applies to: all elements except internal table elements
Inherited: no
Percentages: refer to logical width of containing block
Computed value: the keyword ''margin/auto'' or a computed <> value
Animation type: by computed value type
These properties set the top, right, bottom, and left
margin of a box, respectively.
Negative values for margin properties are allowed,
but there may be implementation-specific limits.
Margin Shorthand: the 'margin' property {#margin-shorthand}
-----------------
Name: margin
Value: <<'margin-top'>>{1,4}
Initial: 0
Applies to: all elements except internal table elements
Inherited: no
Percentages: refer to logical width of containing block
Computed value: see individual properties
Animation type: by computed value type
The 'margin' property is a shorthand property for setting
'margin-top', 'margin-right', 'margin-bottom', and 'margin-left'
in a single declaration.
If there is only one component value,
it applies to all sides.
If there are two values,
the top and bottom margins are set to the first value
and the right and left margins are set to the second.
If there are three values,
the top is set to the first value,
the left and right are set to the second,
and the bottom is set to the third.
If there are four values
they apply to the top, right, bottom, and left, respectively.
The following code demonstrates some possible 'margin' declarations.
body { margin: 2em } /* all margins set to 2em */
body { margin: 1em 2em } /* top & bottom = 1em, right & left = 2em */
body { margin: 1em 2em 3em } /* top=1em, right=2em, bottom=3em, left=2em */
The last rule of the example above is equivalent to the example below:
body {
margin-top: 1em;
margin-right: 2em;
margin-bottom: 3em;
margin-left: 2em; /* copied from opposite side (right) */
}
Margins at Container Edges: the 'margin-trim' property {#margin-trim}
--------------------------
Name: margin-trim
Value: none | in-flow | all
Initial: none
Applies to: [=block containers=], [=multi-column containers=]
Inherited: no
Percentages: N/A
Computed value: keyword as specified
Animation type: discrete
Oftentimes, margins are desired between siblings,
but not at the start/end of the container
where spacing can be controlled with padding.
This property allows the container
to trim the margins of its children
where they adjoin the container’s edges.
Values have the following meanings:
- none
-
Margins are not trimmed by the container.
Note: However, in block layout,
child margins can collapse with their parent.
See CSS2§8.3.1: Collapsing Margins.
- in-flow
-
For in-flow boxes contained by this box,
block-axis margins adjacent to the box’s edges
are truncated to zero.
It also truncates any margins collapsed with such a margin.
- all
-
Trims the margins of in-flow boxes as for ''in-flow'',
but also trims any float margin
whose [=margin edge=] coincides
with the container’s [=content edge=].
Specifically, for [=block containers=],
''margin-trim: in-flow'' or ''margin-trim: all'' discards:
- The block-start margin of a block-level first child.
- The block-end margin of a block-level last child.
- Any margin collapsed with these margins.
''margin-trim: all'' also affects floats
for which the [=block container=] is a [=containing block=] by:
-
Discarding the [=block-start=] [=margin=] of any float
whose [=block-start=] [=outer edge=] coincides
with the [=block-start=] [=inner edge=] of the container.
-
Discarding the [=inline-start=]/[=inline-end=] [=margin=]
of an [=inline-start=]/[=inline-end=] float (or equivalent)
whose [=outer edge=] on that side coincides
with the [=inner edge=] of the container.
-
Zeroing the [=inline-axis=] margins of a float
for the purpose of calculating its [=intrinsic size contributions=]
or its [=size=] in the container’s [=inline axis=].
-
Trimming the [=block-end=] margins of a float
to the extent necessary to prevent such a margin
from extending the [=block size=]
of a [=block formatting context root=].
ISSUE: Should this property apply to [=flex containers=] or [=grid containers=]?
ISSUE: Should floats have a floats value that only affects floats?
Note: See also the 'margin-break' property,
which applies to the box’s own margins
when they adjoin a fragmentation break
(page break / column break / etc.).
ISSUE: Define how this property affects margins at breaks
if the box establishes a fragmentation context.
See also Issue 3314.
Padding {#paddings}
=======
Padding is inserted between the content edge
and the padding edge of a box,
providing spacing between the content and the border.
The padding properties specify the thickness
of the padding area of a box.
The 'padding' shorthand property
sets the padding for all four sides
while the padding longhand properties only set their respective side.
This specification defines the physical 'padding' longhands;
[[css-logical-1#padding-properties]] additionally
defines flow-relative 'padding' longhands.
Both sets of properties control the same set of padding:
they are just different ways of indexing each side.
Note: Backgrounds specified on the box
are by default laid out and painted within the padding edges.
(They are additionally painted underneath the border,
in the border area.)
This behavior can be adjusted
using the 'background-origin' and 'background-clip' properties.
Page-relative (Physical) Padding Properties: the 'padding-top', 'padding-right', 'padding-bottom', and 'padding-left' properties {#padding-physical}
-------------------------------------------
Name: padding-top, padding-right, padding-bottom, padding-left
Value: <>
Initial: 0
Applies to: all elements except: internal table elements other than table cells
Inherited: no
Percentages: refer to logical width of containing block
Computed value: a computed <> value
Animation type: by computed value type
These properties set the top, right, bottom, and left
padding of a box, respectively.
Negative values for padding properties are invalid.
Padding Shorthand: the 'padding' property {#padding-shorthand}
-----------------
Name: padding
Value: <<'padding-top'>>{1,4}
Initial: 0
Applies to: all elements except: internal table elements other than table cells
Inherited: no
Percentages: refer to logical width of containing block
Computed value: see individual properties
Animation type: by computed value type
The 'padding' property is a shorthand property for setting
'padding-top', 'padding-right', 'padding-bottom', and 'padding-left'
in a single declaration.
If there is only one component value,
it applies to all sides.
If there are two values,
the top and bottom padding are set to the first value
and the right and left padding are set to the second.
If there are three values,
the top is set to the first value,
the left and right are set to the second,
and the bottom is set to the third.
The following code demonstrates some possible 'padding' declarations.
body { padding: 2em } /* all padding set to 2em */
body { padding: 1em 2em } /* top & bottom = 1em, right & left = 2em */
body { padding: 1em 2em 3em } /* top=1em, right=2em, bottom=3em, left=2em */
The last rule of the example above is equivalent to the example below:
body {
padding-top: 1em;
padding-right: 2em;
padding-bottom: 3em;
padding-left: 2em; /* copied from opposite side (right) */
}
Borders {#borders}
=======
Borders fill the border area,
to visually delineate the edges of the box,
The border properties specify the thickness
of the border area of a box,
as well as its drawing style and color.
See [[css-backgrounds-3#borders]] for the definition
of the physical variants of these properties;
[[css-logical-1#border-properties]] additionally
defines flow-relative border longhands.
Both sets of properties control the same set of borders:
they are just different ways of indexing each side.
Changes Since CSS Level 2 {#changes}
=========================
The following changes have been made to this module
since CSS Level 2:
- Adding the 'margin-trim' property.
- Adapting the prose slightly to account for vertical writing modes.
Privacy and Security Considerations {#priv-sec}
===============================================
Box Model introduces no new privacy leaks,
or security considerations beyond "implement it correctly".