зеркало из https://github.com/mozilla/gecko-dev.git
31 строка
410 B
HTML
31 строка
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>
|