clear-fix清除浮动的两种写法

mac2022-06-30  90

  

1. [代码]clearfix 清除浮动 .clearfix:after { content: "."; display: block; height: 0; font-size: 0; clear: both; visibility: hidden; } .clearfix { zoom: 1; } 2. [代码]clearfix的另一种写法 .clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .clearfix { display: inline-block; } html[xmlns] .clearfix { display: block; } * html .clearfix { height: 1%; }3.贴上bootstrap里面的clearfix的写法 .clearfix { zoom: 1; } .clearfix:before,.clearfix:after { display: table; line-height: 0; content: ""; } .clearfix:after { clear: both; }

  

 

 

转载于:https://www.cnblogs.com/937522zy/p/6650708.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)