mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
19 lines
253 B
HTML
19 lines
253 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
font-size: 64px;
|
|
}
|
|
li {
|
|
position: relative;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
content: "";
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<li>X<section></section></li>
|