ie 11 兼容性问题
时间:2020-03-28 12:34:55
收藏:0
阅读:53
密码输入框有图标
办法:删除
input::-ms-clear, input::-ms-reveal {
display: none;
}
绝对定位下 translate bug
使用 left, top 时有一些问题,元素审查的话可能会发现尺寸不对。
办法:left, top 改成 right, bottom
React 下 input[type="file"] 设置 value = null || "" 触发两次 onChange
不要重置 value 的值
AudioContext
不支持
原文:https://www.cnblogs.com/ende93/p/12586422.html
评论(0)