mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
26 lines
361 B
HTML
26 lines
361 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-bottom: 30px;
|
|
}
|
|
#caption {
|
|
width: 100px;
|
|
height: 20px;
|
|
background-color: blue;
|
|
margin-bottom: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div>
|
|
<div id="caption"></div>
|
|
</div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|