summaryrefslogtreecommitdiff
path: root/works/float-clear-first.html
blob: 3eefc98bd73f71d055b675a7c71a19e2f20362f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
<style>
div {width:4em; height:4em;}
</style>
</head>

<body>


<div style="background:red;   float:left; clear:left;"></div>
<div style="background:green; float:left;"></div>
<div style="background:blue;  float:left;"></div>

<p style="clear:both;">Should be three equal sized boxes above. Left to right: red, green, blue.</p>