mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
20 lines
212 B
HTML
20 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>
|