mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
455 B
HTML
33 lines
455 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
.separator {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#table {
|
||
|
width: 100px;
|
||
|
}
|
||
|
#cell {
|
||
|
height: 20px;
|
||
|
background-color: red;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
#caption {
|
||
|
height: 20px;
|
||
|
background-color: blue;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="separator"></div>
|
||
|
<div id="table">
|
||
|
<div id="cell"></div>
|
||
|
<div id="caption"></div>
|
||
|
</div>
|
||
|
<div class="separator"></div>
|
||
|
</body>
|
||
|
</html>
|