最近在前端寫頁面的時候,遇到了三個蘋果手機的專屬BUG,記錄下...前端
BUG1:蘋果手機 form 表單的input有陰影web
解決方法:app
input { /* 1 */ overflow: visible; outline:none; -webkit-appearance: none; }
BUG2:蘋果手機form表單裏的input是圓角spa
解決辦法:code
input{ border-radius:0; }
BUG3:蘋果手機裏面的的手機號碼會被識別,添加藍色orm
解決辦法:添加meta屬性blog
<meta name="format-detection" content="telephone=no" />