mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
87d3306c75
--HG-- extra : rebase_source : 7ae1e9d247225b11cf6468bd0334ccd80f86db8c
34 lines
411 B
HTML
34 lines
411 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#b {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#c {
|
|
margin-top: 30px;
|
|
margin-bottom: 40px;
|
|
height: 0;
|
|
}
|
|
#d {
|
|
height: 10px; width: 100px;
|
|
background-color: red;
|
|
}
|
|
#e {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="b"></div>
|
|
<div id="a">
|
|
<div id="c">
|
|
<div id="d"></div>
|
|
</div>
|
|
</div>
|
|
<div id="e"></div>
|
|
</body>
|
|
</html>
|