mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
377 B
HTML
26 lines
377 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#overflow, .separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
.margin {
|
|
height: 20px;
|
|
}
|
|
#overflow {
|
|
height: 40px;
|
|
overflow: visible;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div class="margin"></div>
|
|
<div id="overflow"></div>
|
|
<div class="margin"></div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|