mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
33 lines
495 B
HTML
33 lines
495 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#separator-top {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-bottom: 10px;
|
|
}
|
|
#fieldset {
|
|
background-color: blue;
|
|
padding: 20px;
|
|
}
|
|
#margin-child {
|
|
height: 40px;
|
|
background-color: green;
|
|
}
|
|
#separator-bottom {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="separator-top"></div>
|
|
<div id="fieldset">
|
|
<div id="margin-child"></div>
|
|
</div>
|
|
<div id="separator-bottom"></div>
|
|
</body>
|
|
</html>
|