blob: 05d74feab2d2e94d711c653327f860b7da18cb65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
</head>
<body onload="document.getElementById('blue').style.display = 'block'; ">
<div style="float:left; width:10px; height:500px; background:blue; display: none" id="blue"></div>
<div style="float:right; height: 100px; width: 20px; background: red;"></div>
<div>
<div id=b style="float:left; clear: right; width: 100px; height:100px; border: solid orange;"></div>
asdf<br>asdf<br>asdf<br>asdf<br>asdf<br>asdf<br>asdf
</div>
</body>
</html>
|