PC端chrome設備模擬器里面

iphone7里面

區別
- iphone7 下 placeholder 字體變成12px
- 移動端下,placeholder 不垂直居中
解決方案:
input::-webkit-input-placeholder{
font-size: 14px ; //解決iphone下字體大小為12的問題(和input大小不一致)
line-height: 1em; //解決不垂直居中的問題
}
PC端chrome設備模擬器里面
iphone7里面
區別
解決方案:
input::-webkit-input-placeholder{
font-size: 14px ; //解決iphone下字體大小為12的問題(和input大小不一致)
line-height: 1em; //解決不垂直居中的問題
}