mirror of
https://github.com/servo/servo.git
synced 2025-06-26 10:04:33 +01:00
28 lines
542 B
HTML
28 lines
542 B
HTML
<!DOCTYPE HTML>
|
|
<meta charset="utf-8">
|
|
<title>Reference for CSS Display Test</title>
|
|
<style>
|
|
.float {
|
|
background-color: blue;
|
|
width: 250px;
|
|
height: 100px;
|
|
}
|
|
.left { float: left; }
|
|
.right { float: right; }
|
|
|
|
#outer { position: relative; width: 400px; }
|
|
|
|
#zerowidth {
|
|
position: absolute;
|
|
top: 100px;
|
|
left: 250px;
|
|
width: 0;
|
|
outline: 1px solid black;
|
|
height: 200px;
|
|
}
|
|
</style>
|
|
<div id="outer">
|
|
<div class="float right"></div>
|
|
<div class="float left"></div>
|
|
<div id="zerowidth"></div>
|
|
</div>
|