Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
<html>
<style>
body {
width: 400px;
}
div#float {
float: right;
width: 200px;
height: 400px;
background-color: lightgreen;
}
div#details {
float: right;
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>