mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00
16 lines
No EOL
213 B
HTML
16 lines
No EOL
213 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
font: 16px SerenitySans;
|
|
}
|
|
.foo {
|
|
display: flex;
|
|
gap: 1ch;
|
|
}
|
|
.foo:before {
|
|
content: "well";
|
|
}
|
|
.foo:after {
|
|
content: "friends";
|
|
}
|
|
</style><div class="foo">hello</div> |