mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
21 lines
228 B
HTML
21 lines
228 B
HTML
<html>
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
|
|
.box {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0px;
|
|
border-width: 10px;
|
|
}
|
|
|
|
.outset { border-style: outset; }
|
|
</style>
|
|
|
|
<body>
|
|
<div class="box outset"></div>
|
|
</body>
|
|
</html>
|