Skip to content

Latest commit

 

History

History
executable file
·
40 lines (28 loc) · 804 Bytes

桌面web踩坑记录.md

File metadata and controls

executable file
·
40 lines (28 loc) · 804 Bytes

前言

收集桌面web的踩坑

antd tooltip的换行问题

解决:

 overlayStyle={{ whiteSpace: 'pre' }}

placeholder不居中的问题

一行css可以解决

input:placeholder {
line-height: normal; 
}

chrome下input自动填充背景色问题

// 移除输入框自动填充后的背景色
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px white inset !important;
}

pointerDown事件ipad端不触发fileInput

Demo