1. 程式人生 > >移動端的那些坑 IOS端相容性問題

移動端的那些坑 IOS端相容性問題

https://mp.weixin.qq.com/s/pVGFcVWmn5o-tD6hrdksUQ

 

1.在IOS下,input 和textarea表單預設會有個內陰影,一定程度上影響視覺一致,可通過設定下面程式碼去掉:

input{

        -webkit-appearance:none;
}

 

2.disabled 在iOS下顏色變淺問題的相容

input:disabled, input[disabled]{ 
color: red; 
-webkit-text-fill-color:red; 
-webkit-opacity:1; 
opacity: 1; 
}