mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
26 lines
340 B
HTML
26 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#first-child {
|
|
height: 20px;
|
|
margin-top: 20px;
|
|
background-color: blue;
|
|
}
|
|
#parent {
|
|
margin-top: -30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="separator"></div>
|
|
<div id="parent">
|
|
<div id="first-child"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|