clear (清除) 屬性是用來抵銷 float 屬性的作用。可能的值為:
#header {
height: 50px;
background-color: #F38630;
margin-bottom: 10px;
}
.left {
height: 300px;
width: 150px;
background-color: #A7DBD8;
float: left;
margin-bottom: 10px;
}
.right {
height: 300px;
width: 450px;
background-color: #E0E4CC;
float: right;
margin-bottom: 10px;
}
#footer {
height: 50px;
background-color: #69D2E7;
clear:both
}