1.在苹果手机上,用点击事件后会出现一个高亮的阴影: 面对click事件的阴影,解决办法: *{ -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent; } 2.在安卓手机上的select有灰色背景,解决办法: select{ appearance:none; -moz-appearance:none; -webkit-appearance:none; border:none; }…