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