mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
19 lines
256 B
HTML
19 lines
256 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
font-size: 64px;
|
|
}
|
|
div {
|
|
position: relative;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
content: "";
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<div>X<section></section></div>
|