12345678910111213141516171819202122232425262728293031 |
- <!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: left;
- width: 200px;
- height: 400px;
- background-color: lightgreen;
- }
- div#details {
- float: left;
- background-color: orange;
- }
- div#summary {
- background-color: green;
- }
- </style>
- <body>
- <div id="details">
- <div id="summary">Summary</div>
- <div id="float"></div>
- </div>
- </body>
- </html>
|