mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

352K
active users

Ana Tudor 🐯

I've mostly moved from absolute positioning to grid stacking:

.wrapper { display: grid }
.stack-item { grid-area: 1/ 1 }

But there's still one case where absolute positioning stacking makes sense: a stacked item is a text node (not an element or pseudo, so there's no CSS selector to select it).

#CSS#code#coding