:::

16. clear(清除)

clear (清除) 屬性是用來抵銷 float 屬性的作用。可能的值為:

  • left:消除左邊的浮動。
  • right:消除右邊的浮動。
  • both:消除左邊及右邊的浮動。
  • none:不消除任何一邊的浮動。

#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

}


:::

語系選擇