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