A place to cache linked articles (think custom and personal wayback machine)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.md 30KB

title: The Stack: Every Layout url: https://every-layout.dev/layouts/stack/#the-component hash_url: 6b2b8e2559 archive_date: 2024-02-22 og_image: https://every-layout.dev/images/card.png description: A composable CSS layout primitive. favicon: https://every-layout.dev/images/favicon.png language: en_US

Flow elements require space (sometimes referred to as white space) to physically and conceptually separate them from the elements that come before and after them. This is the purpose of the margin property.

However, design systems conceive elements and components in isolation. At the time of conception, it is not settled whether there will be surrounding content or what the nature of that content will be. One element or component is likely to appear in different contexts, and the requirement for spacing will differ.

We are in the habit of styling elements, or classes of elements, directly: we make style declarations belong to elements. Typically, this does not produce any issues, but margin is really a property of the relationship between two proximate elements. The following code is therefore problematic:

p {
margin-bottom: 1.5rem;
}

Since the declaration is not context sensitive, any correct application of the margin is a matter of luck. If the paragraph is proceeded by another element, the effect is desirable. But a :last-child paragraph produces a redundant margin. Inside a padded parent element, this redundant margin combines with the parent’s padding to produce double the intended space. This is just one problem this approach produces.

The trick is to style the context, not the individual element(s). The Stack layout primitive injects margin between elements via their common parent:

.stack > * + * {
margin-block-start: 1.5rem;
}

Using the adjacent sibling combinator (+), margin-block-start is only applied where the element is preceded by another element: no “left over” margin. The universal (or wildcard) selector (*) ensures any and all elements are affected. The key * + * construct is known as the owl.

false Line height and modular scale

In the previous example, we used a margin-block-start value of 1.5rem. We’re in the habit of using this value because it reflects our (usually preferred) body text line-height of 1.5.

The vertical spacing of your design should be based on your standard line-height because text dominates most pages’ layout, making one line of text a natural denominator.

If the body text line-height is 1.5 (i.e. 1.5 ⨉ the font-size), it makes sense to use 1.5 as the ratio for your modular scale. Read the introduction to modular scale, and how it can be expressed with CSS custom properties.

Recursion

In the previous example, the child combinator (>) ensures the margins only apply to children of the .stack element. However, it’s possible to inject margins recursively by removing this combinator from the selector.

.stack * + * {
margin-block-start: 1.5rem;
}

This can be useful where you want to affect elements at any nesting level, while retaining white space regularity.

In the following demonstration (using the Stack component to follow) there are a set of box-shaped elements. Two of these are nested within another. Because recursion is applied, each box is evenly spaced using just one parent Stack.

You’re likely to find the recursive mode affects unwanted elements. For example, generic list items that are typically not separated by margins will become unexpectedly spread out.

Nested variants

Recursion applies the same margin no matter the nesting depth. A more deliberate approach would be to set up alternative non-recursive Stacks with different margin values, and nest them where suitable. Consider the following.

[class^='stack'] > * {

margin-block: 0;
}

.stack-large > * + * {
margin-block-start: 3rem;
}

.stack-small > * + * {
margin-block-start: 0.5rem;
}

The first declaration block’s selector resets the vertical margin for all Stack-like elements (by matching class values that begin with stack). Importantly, only the vertical margins are reset, because the stack only affects vertical margin, and we don't want it to reach outside its remit. You may not need this reset if a universal reset for margin is already in place (see Global and local styling).

The following two blocks set up alternative Stacks, with different margin values. These can be nested to produce—for example—the illustrated form layout. Be aware that the <label> elements would need to have display: block applied to appear above the inputs, and for their margins to actually produce spaces (the vertical margin of inline elements has no effect; see The display property).

In Every Layout, custom elements are used to implement layout components/primitives like the Stack. In the Stack component, the space prop (property; attribute) is used to define the spacing value. The modified classes example above is just for illustration. See the nested example.

Exceptions

CSS works best as an exception-based language. You write far-reaching rules, then use the cascade to override these rules in special cases. As written in Managing Flow and Rhythm with CSS Custom Properties, you can create per-element exceptions within a single Stack context (i.e. at the same nesting level).

.stack > * + * {
margin-block-start: var(--space, 1.5em);
}

.stack-exception,
.stack-exception + * {

--space: 3rem;
}

Note that we are applying the increased spacing above and below the .exception element, where applicable. If you only wanted to increase the space above, you would remove .exception + *.

This works because * has zero specificity, so .stack > * + * and .stack-exception are the same specificity and .stack-exception overrides .stack > * + * in the cascade (by appearing further down in the stylesheet).

Splitting the stack

By making the Stack a Flexbox context, we can give it one final power: the ability to add an auto margin to a chosen element. This way, we can group elements to the top and bottom of the vertical space. Useful for card-like components.

In the following example, we've chosen to group elements after the second element towards the bottom of the space.

.stack {
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.stack > * + * {
margin-block-start: var(--space, 1.5rem);
}

.stack > :nth-child(2) {
margin-block-end: auto;
}

false Custom property placement

Importantly, despite now setting some properties on the parent .stack element, we’re still setting the --space value on the children, not “hoisting” it up. If the parent is where the property is set, it will get overridden if the parent becomes a child in nesting (see Nested variants, above).

This can be seen working in context in the following demo depicting a presentation/slides editor. The Cover element on the right has a minimum height of 66.666vh, forcing the left sidebar's height to be taller than its content. This is what produces the gap between the slide images and the "Add slide" button.

A slides editor interface with a sidebar. The sidebar has images towards the top and an add slide button pushed down to the bottom.

Add slide +

Title of slide

sed ultrices efficitur faucibus erat id sapien sapien nisl in ornare mi felis fusce vestibulum semper cras tellus justo eget pellentesque ipsum donec pretium bibendum auctor vitae porttitor tristique mauris ante quam orci ac mattis morbi urna eu in leo vestibulum arcu tempus nibh eget non morbi vitae neque arcu

Where the Stack is the only child of its parent, nothing forces it to stretch as in the last example/demo. A height of 100% ensures the Stack's height matches the parent's and the split can occur.

.stack:only-child {

block-size: 100%;
}

The potential remit of the Stack layout can hardly be overestimated. Anywhere elements are stacked one atop another, it is likely a Stack should be in effect. Only adjacent elements (such as grid cells) should not be subject to a Stack. The grid cells are likely to be Stacks, however, and the grid itself a member of a Stack.

Use this tool to help you generate basic Stack CSS and HTML.

A custom element implementation of the Stack is provided for download. Consult the API and examples to follow for more information.

<use xlink:href="/images/all.svg#icon-download"></use>

Download Stack.zip

Props API

The following props (attributes) will cause the Stack component to re-render when altered. They can be altered by hand—in browser developer tools—or as the subjects of inherited application state.

Name Type Default Description
space string “var(--s1)” A CSS margin value
recursive boolean false Whether the spaces apply recursively (i.e. regardless of nesting level)
splitAfter number The element after which to split the stack with an auto margin

Examples

Basic

<stack-l>
<h2></h2>
<img src=path/to/some/image.svg />
<p></p>
</stack-l>

Nested

<stack-l space=3rem>
<h2></h2>
<stack-l space=1.5rem>
<p></p>
<p></p>
<p></p>
</stack-l>
<h2></h2>
<stack-l space=1.5rem>
<p></p>
<p></p>
<p></p>
</stack-l>
</stack-l>

Recursive

<stack-l recursive>
<div></div>
<div></div>
<div>
<div></div>
<div></div>
</div>
</stack-l>

List semantics

In some cases, browsers should interpret the Stack as a list for screen reader software. You can use the following ARIA attribution to achieve this.

<stack-l role=list>
<div role=listitem></div>
<div role=listitem></div>
<div role=listitem></div>
</stack-l>