mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
22 lines
272 B
HTML
22 lines
272 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
background: red;
|
|
outline: solid green 32px;
|
|
outline-offset: 32px;
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 64px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
</html>
|
|
|