首页 > 解决方案 > 输入视图的底部边框在 iOS webview 中看起来不同

问题描述

似乎在ios webview中,输入表单的底部边框不知何故变成了U形

在此处输入图像描述

我可以使用css让它看起来像在android中吗?

标签: cssioswebviewuiwebview

解决方案


是的,你可以使用这个 css 重置输入

 border-radius: 0;
 font-family: inherit;
 font-size: inherit;
 color: inherit;
 box-shadow: none;
 -webkit-appearance: none;
 appearance: none;

推荐阅读