mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
22 lines
247 B
HTML
22 lines
247 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
background: rgb(255, 0, 0);
|
|
width: 30px;
|
|
height: 30px;
|
|
top: 30px;
|
|
left: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
</html>
|
|
|