mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30 lines
366 B
HTML
30 lines
366 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#a {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#b {
|
||
|
float: left;
|
||
|
width: 50px;
|
||
|
background-color: blue;
|
||
|
margin-top: 20px;
|
||
|
padding-top: 40px;
|
||
|
padding-bottom: 40px;
|
||
|
}
|
||
|
#b div {
|
||
|
height: 20px;
|
||
|
background-color: red;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="a"></div>
|
||
|
<div id="b">
|
||
|
<div></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|