Files
servo/tests/ref/outline_offset_a.html
2015-01-08 10:49:54 -08:00

23 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>