mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 09:41:02 +00:00
15 lines
270 B
HTML
15 lines
270 B
HTML
|
|
<!DOCTYPE html><style>
|
||
|
|
* {
|
||
|
|
font: 20px SerenitySans;
|
||
|
|
}
|
||
|
|
.hello::before {
|
||
|
|
position: absolute;
|
||
|
|
height: 100px;
|
||
|
|
width: 100px;
|
||
|
|
--wide: 500px;
|
||
|
|
width: var(--wide);
|
||
|
|
--bg: orange;
|
||
|
|
background: var(--bg);
|
||
|
|
content: "";
|
||
|
|
}
|
||
|
|
</style><div class="hello">
|