收集桌面web的踩坑
解决:
overlayStyle={{ whiteSpace: 'pre' }}
一行css可以解决
input:placeholder {
line-height: normal;
}
// 移除输入框自动填充后的背景色
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
box-shadow: 0 0 0 30px white inset !important;
}