nextjs应用: input输入框在ios移动端被点击会放大的问题 a year ago
近期写了个小应用,pc上测试正常,但是在ios上只要触摸input输入框,页面就会放大
解决办法是在global.css
中加上以下css修饰
input,
input:focus,
textarea,
textarea:focus,
select,
select:focus {
font-size: 16px !important;
}
近期写了个小应用,pc上测试正常,但是在ios上只要触摸input输入框,页面就会放大
解决办法是在global.css
中加上以下css修饰
input,
input:focus,
textarea,
textarea:focus,
select,
select:focus {
font-size: 16px !important;
}