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