servo/tests/ref/outline_offset_a.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>