Runrioter's Github
Runrioter's Blog

Contain

`contain: layout`: The internal layout of the element is isolated from the rest of the page. This means nothing outside the element affects its internal layout, and vice versa.

Using `layout`, `paint`, `strict` or `content` values for this property creates: A new containing block (for the descendants whose position property is absolute or fixed).
With `contain: layout`, L overlaps the text of the second element
Some element
L
Some element
Without `contain: layout`, L doesn't overlap the text of the second element
Some element
L
Some element
SvelteKit