Newer
Older
minerva / Tests / LibWeb / Layout / input / css-pseudo-element-blockification.html
@minerva minerva on 13 Jul 196 bytes Initial commit
<style>
* {
    font: 16px MinervaSans;
}
.foo {
    display: flex;
    gap: 1ch;
}
.foo:before {
    content: "well";
}
.foo:after {
    content: "friends";
}
</style><div class="foo">hello</div>