blob: 005ca30428ebfdc7651fe0adb32c1007885e1757 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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>
|