mirror of
https://github.com/servo/servo.git
synced 2025-06-08 08:33:26 +00:00
21 lines
247 B
HTML
21 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>
|
|
|