mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
18 lines
459 B
HTML
18 lines
459 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Reference for negative margins</title>
|
|
<link rel="author" title="Google Inc." href="https://www.google.com/">
|
|
<style>
|
|
.container {
|
|
width: 60px;
|
|
height: 10px;
|
|
background-color: green;
|
|
border: 3px black solid;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>You should see a green rectangle with a black border, 60px wide. You should see no red.</p>
|
|
|
|
<div class="container">
|
|
</div>
|
|
</body>
|