mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4c72dd2bbf
--HG-- extra : rebase_source : 4bbabdbbed53b24f721d30a8cd52c79aeb03a188
27 lines
362 B
HTML
27 lines
362 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;
|
|
}
|
|
#sibling {
|
|
width: 5em; height: 10em;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset>
|
|
<div id="float"></div>
|
|
<div id="sibling"></div>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|