mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-25 18:52:22 -05:00
16 lines
348 B
HTML
16 lines
348 B
HTML
|
<!DOCTYPE html><html><head><style>
|
||
|
* {
|
||
|
border: 1px solid black;
|
||
|
font: 80px SerenitySans;
|
||
|
}
|
||
|
.hero {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
width: 500px;
|
||
|
}
|
||
|
.upper {
|
||
|
background: orange;
|
||
|
}
|
||
|
</style></head><body class="hero"><div class="upper">This entire text should be on orange background.</div></div>
|