Html清除浮動

精益求精方案一:

  相對於空標籤閉合浮動的方法代碼彷佛仍是有些冗餘,經過查詢發現Unicode字符裏有一個「零寬度空格」,也就是U+200B ,這個字符自己是不可見的,因此咱們徹底能夠省略掉 visibility:hidden了spa

1 .clearfix:after {content:"\200B"; display:block; height:0; clear:both; }
2 .clearfix { *zoom:1; }.

精益求精方案二:

  由 Nicolas Gallagher 大溼提出來的,原文:A new micro clearfix hack,該方法也不存在firefox中空隙的問題。firefox

1 /* For modern browsers */
2 .cf:before,.cf:after {
3 content:"";
4 display:table;
5 }
6 .cf:after { clear:both; }/* For IE 6/7 (trigger hasLayout) */
7 .cf { zoom:1; }
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息