2009-05-26 11:24:25 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
2013-10-15 17:37:03 -07:00
|
|
|
.block {
|
2009-05-26 11:24:25 -07:00
|
|
|
height: 20px;
|
|
|
|
background-color: green;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
#table {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
#caption {
|
|
|
|
height: 20px;
|
|
|
|
margin-bottom: 20px;
|
2013-10-15 17:37:03 -07:00
|
|
|
background-color: blue;
|
2009-05-26 11:24:25 -07:00
|
|
|
}
|
|
|
|
#cell {
|
|
|
|
height: 20px;
|
|
|
|
margin-bottom: 10px;
|
2013-10-15 17:37:03 -07:00
|
|
|
background-color: orange;
|
2009-05-26 11:24:25 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-15 17:37:03 -07:00
|
|
|
<div class="block"></div>
|
2009-05-26 11:24:25 -07:00
|
|
|
<div id="table">
|
|
|
|
<div id="caption"></div>
|
|
|
|
<div id="cell"></div>
|
|
|
|
</div>
|
2013-10-15 17:37:03 -07:00
|
|
|
<div class="block"></div>
|
2009-05-26 11:24:25 -07:00
|
|
|
</body>
|
|
|
|
</html>
|