зеркало из https://github.com/mozilla/gecko-dev.git
34 строки
465 B
HTML
34 строки
465 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.block {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#table {
|
|
margin-top: 10px;
|
|
width: 100px;
|
|
}
|
|
#cell {
|
|
height: 20px;
|
|
margin-bottom: 20px;
|
|
background-color: orange;
|
|
}
|
|
#caption {
|
|
height: 20px;
|
|
margin-bottom: 30px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="block"></div>
|
|
<div id="table">
|
|
<div id="cell"></div>
|
|
<div id="caption"></div>
|
|
</div>
|
|
<div class="block"></div>
|
|
</body>
|
|
</html>
|