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