2009-04-25 12:50:57 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2009-09-23 18:55:55 +04:00
|
|
|
<!-- specifying all heights in em units so that large font sizes
|
|
|
|
don't disrupt relationships; everything will scale together -->
|
2009-04-25 12:50:57 +04:00
|
|
|
<style type="text/css">
|
2013-10-16 04:37:03 +04:00
|
|
|
#parent {
|
2009-04-25 12:50:57 +04:00
|
|
|
width: 200px;
|
2013-10-16 04:37:03 +04:00
|
|
|
background-color: lightgreen;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#inline-block1, #inline-block2 {
|
|
|
|
height: 2em;
|
|
|
|
background-color: green;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#margin {
|
|
|
|
height: 2em;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-16 04:37:03 +04:00
|
|
|
<div id="parent">
|
|
|
|
<div id="inline-block1"></div>
|
|
|
|
<div id="margin"></div>
|
|
|
|
<div id="inline-block2"></div>
|
2009-04-25 12:50:57 +04:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|