mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
410 B
HTML
31 lines
410 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
fieldset {
|
||
|
margin: 0; padding: 0;
|
||
|
border: none;
|
||
|
}
|
||
|
#float {
|
||
|
float: left;
|
||
|
width: 10em; height: 5em;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#clear {
|
||
|
clear: left;
|
||
|
}
|
||
|
#sibling {
|
||
|
width: 5em; height: 5em;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<fieldset>
|
||
|
<div id="float"></div>
|
||
|
<div id="clear"></div>
|
||
|
<div id="sibling"></div>
|
||
|
</fieldset>
|
||
|
</body>
|
||
|
</html>
|