mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
a0e84ca6c3
--HG-- extra : rebase_source : 7ae1e9d247225b11cf6468bd0334ccd80f86db8c
33 lines
382 B
HTML
33 lines
382 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#a {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#b {
|
|
background-color: green;
|
|
margin-top: 10px;
|
|
}
|
|
#c {
|
|
margin-top: 20px;
|
|
margin-bottom: 30px;
|
|
height: 0;
|
|
}
|
|
#d {
|
|
height: 10px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="a"></div>
|
|
<div id="b">
|
|
<div id="c">
|
|
<div id="d"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|