blob: b65de5bdbbf0943d923f3716bf8b338b303a6e40 (
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
27
28
29
30
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<style>
body {
width: 400px;
}
div#float {
float: right;
width: 200px;
height: 200px;
background-color: lightgreen;
}
div#details {
background-color: orange;
}
div#summary {
background-color: green;
}
</style>
<body>
<div id="float"></div>
<div id="details">
<div id="summary">Summary</div>
<!-- No content due to closed details -->
</div>
</body>
</html>
|