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