移动端前端笔记
1、利用css伪类after或before的写法来设置某些小icon的时候,高度、宽度都是0,虽然有边框,但是如果加上overflow:hidden,安卓2.xx的低版本的自带浏览器就无法显示了
.cur:after{display:block;
content:"";
width:0px;
height:0px;
border-width:6px;
border-color:transparent transparent #fff;
border-style:solid;
position:absolute;
bottom:0px;
left:50%;
margin-left:-10px;}
浙公网安备 33010602011771号