mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
19 lines
344 B
HTML
19 lines
344 B
HTML
|
<!doctype html><html lang="en"><style>
|
||
|
* {
|
||
|
font-size: 60px;
|
||
|
}
|
||
|
body {
|
||
|
display: grid;
|
||
|
grid-template-areas: "content";
|
||
|
}
|
||
|
.abspos {
|
||
|
grid-area: content;
|
||
|
background: gray;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
.text {
|
||
|
grid-area: content;
|
||
|
}
|
||
|
</style><body><div class="abspos"></div><div class="text">hello friends</div></body>
|