mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
399 B
HTML
31 lines
399 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
.a {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#b {
|
||
|
height: 120px;
|
||
|
margin-top: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
padding: 40px 0;
|
||
|
background-color: green;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
#c {
|
||
|
height: 160px;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="a"></div>
|
||
|
<div id="b">
|
||
|
<div id="c"></div>
|
||
|
</div>
|
||
|
<div class="a"></div>
|
||
|
</body>
|
||
|
</html>
|