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