解决h5页面滚动不流畅
-webkit-overflow-scrolling: touch;
去除ios input框点击时的灰色背景
webkit-tap-highlight-color:rgba(0,0,0,0);
定位事件穿透(span定位在div上,click事件锁定div上,让span定位穿透并且可以点击)
span{pointer-events: none;}
padding值的计算( .father 宽度100%,.child 宽度50%,并且.child 要有padding:0 2%;但是不影响.child 本身的宽度)
.father {width:100%;box-sizing:border-box;}
.child {width:50%;box-sizing:border-box;}
网友评论