Sections
Box sizing
Box-sizing atomic classes allow one to determine what is used to determine an element’s width or height.
Classes
Section titled ClassesClass | Output | Definition |
---|---|---|
.box-content |
box-sizing: content-box; |
Indicates that the element's width and height affects only the element's content box, that is the area minus the element's margin, padding, and borders. This is the default browser value. |
.box-border |
box-sizing: border-box; |
Indicates that the element's width and height affects the entire element. This is the preferred default value for Stacks. |
.box-unset |
box-sizing: unset; |
Removes the previously set |
Examples
Section titled Examples<div>…</div>
<div class="box-content">…</div>
<div class="box-border">…</div>