input::-ms-clear {
display:none;
}
IE11 input width changes when clicked - 此解决方案适用于单击文本框
更改文本框中的文本会更改IE 11中的宽度
请告诉我任何解决方案
答案 0 :(得分:1)
请更改css
table.fields input[type='text'], table.fields input[type='password'], table.fields select, .inpt
width: 98%; to width:100%
它会起作用。一切顺利
答案 1 :(得分:0)
看起来它是IE中的一个错误,你可以在子元素上使用margin。
How can I work around this IE11 layout bug related to table-cell, text-decoration, and padding?
因此,将基于填充的百分比更改为基于px或em的修复问题。
https://jsfiddle.net/3TwKF/22/
padding: 2px .5em;