iOS上input输入内容拦腰截断 发表于 2020-07-30 分类于 前端 / CSS 阅读次数: Changyan: 问题在 ios 上 input 输入框只显示一半高度的字: 解决方案固定 input 输入框的高度,把 input 输入框写死高度: 123456/* uniapp 写法,非 uniapp 项目给 input 添加固定高度即可 */uni-input /deep/ .uni-input-form { .uni-input-input { height: 50rpx !important; }}