blob: 8526ed80b66afe9d72326807b73c641dd5d319d3 [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: magenta;
}
#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>