mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
368 B
HTML
19 lines
368 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Without floats, no clearance applies, thus margin-top of #clear
|
|
should collapse with margin-bottom of its parent element. -->
|
|
<style type="text/css">
|
|
.separator {
|
|
height: 20px;
|
|
margin-bottom: 20px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|