mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
29 lines
378 B
HTML
29 lines
378 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
fieldset {
|
|
height: 20px;
|
|
background-color: green;
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#top {
|
|
margin-bottom: 20px;
|
|
}
|
|
#middle {
|
|
margin: 20px 0;
|
|
}
|
|
#bottom {
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset id="top"></fieldset>
|
|
<fieldset id="middle"></fieldset>
|
|
<fieldset id="bottom"></fieldset>
|
|
</body>
|
|
</html>
|