1、利用css伪类after或before的写法来设置某些小icon的时候,高度、宽度都是0,虽然有边框,但是如果加上overflow:hidden,安卓2.xx的低版本的自带浏览器就无法显示了
1
2
3
4
5
6
7
8
9
10
11
|
.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 ;}
|