blob: 5853022ddd117ef632a3adf1071526428fd28c3c [file] [log] [blame]
<html>
<head>
<style>
div {
width: 50px;
height: 50px;
float: left;
}
#box1 {
background-color: orange;
}
#box2 {
background-color: blue;
}
#box3 {
clear: left;
background-color: blue;
}
#box4 {
background-color: orange;
}
</style>
</head>
<body>
<div id="box1"></div>
<div id="box2"></div>
<div id="box3"></div>
<div id="box4"></div>
</body>
</html>