asp.net 应用后 IE 10 上的文本框文本 bootstrap
asp.net textbox text on IE 10 after apply bootstrap
应用后 bootstrap asp.net 文本框显示这样的文本。如何解决这个问题?我应用了行高:0。但是没有效果。this is the issue
我希望你的 textarea 固定高度或行高与字体大小不同,所以你检查你的 css 并在流程上设置高度此代码:
并尝试
input{ line-height: inherit;
font-size: 30px;
height: 50px;}
终于找到了使用此媒体查询解决 IE 10 文本框文本顶部底部 trim 问题的解决方案。
@media screen and (min-width:0[=10=]) {
/* IE9 and IE10 rule sets go here */
input[type=text] {
line-height:100%;
font-size:18px;
height:18px;
}
}
应用后 bootstrap asp.net 文本框显示这样的文本。如何解决这个问题?我应用了行高:0。但是没有效果。this is the issue
我希望你的 textarea 固定高度或行高与字体大小不同,所以你检查你的 css 并在流程上设置高度此代码: 并尝试
input{ line-height: inherit;
font-size: 30px;
height: 50px;}
终于找到了使用此媒体查询解决 IE 10 文本框文本顶部底部 trim 问题的解决方案。
@media screen and (min-width:0[=10=]) {
/* IE9 and IE10 rule sets go here */
input[type=text] {
line-height:100%;
font-size:18px;
height:18px;
}
}