mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
408 B
HTML
31 lines
408 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#parent {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
#float {
|
||
|
float: left;
|
||
|
height: 40px; width: 100px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#clear {
|
||
|
clear: left;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
#separator {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="parent">
|
||
|
<div id="float"></div>
|
||
|
<div id="clear"></div>
|
||
|
</div>
|
||
|
<div id="separator"></div>
|
||
|
</body>
|
||
|
</html>
|