2009-04-25 01:50:57 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2009-09-23 07:55:55 -07:00
|
|
|
<!-- specifying all heights in em units so that large font sizes
|
|
|
|
don't disrupt relationships; everything will scale together -->
|
2009-04-25 01:50:57 -07:00
|
|
|
<style type="text/css">
|
|
|
|
#a {
|
|
|
|
width: 200px;
|
|
|
|
background-color: green;
|
|
|
|
}
|
|
|
|
#b, #c {
|
|
|
|
display: inline-block;
|
2009-09-23 07:55:55 -07:00
|
|
|
height: 2em; width: 200px;
|
2009-04-25 01:50:57 -07:00
|
|
|
background-color: blue;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
#b {
|
2009-09-23 07:55:55 -07:00
|
|
|
margin-bottom: 2em;
|
2009-04-25 01:50:57 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="a">
|
|
|
|
<div id="b"></div>
|
|
|
|
<div id="c"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|