mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
27 lines
636 B
HTML
27 lines
636 B
HTML
<style>
|
|
body {
|
|
width: 780px;
|
|
text-align: center
|
|
}
|
|
.box {
|
|
height: 100px;
|
|
width: 300px;
|
|
background: red;
|
|
}
|
|
#top {
|
|
overflow: hidden;
|
|
}
|
|
#bottom {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="top">
|
|
<div id="top-left" class="box" style="float: left"></div>
|
|
<div id="top-right" class="box" style="float: right"></div>
|
|
</div>
|
|
<div id="bottom">
|
|
<!-- Due to the overflow property of the top div, this div should be laid beneath the top, rather than inline -->
|
|
<div id="text">foobar</div>
|
|
</div>
|
|
</body>
|