summaryrefslogtreecommitdiff
path: root/legacy/works/clear-on-float.html
blob: 328bd20710b22b08a6ce2265af4ada776881a63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Clear test</title>
<style type="text/css">
div {
	float: left;
	clear: left;
	width: 10em;
	padding: 0.5em;
	color: white; }
</style>
</head>
<body>

<div style="background: green">green</div>

<div style="background: blue">blue</div>

</body>
</html>