应用bootstrap后,IE 10上的asp.net文本框文本

时间:2017-10-14 05:50:11

标签: html css asp.net twitter-bootstrap internet-explorer-10

应用bootstrap后,asp.net文本框显示这样的文本。如何解决这个问题?我应用了行高:0。但没有效果。this is the issue

2 个答案:

答案 0 :(得分:0)

我希望你的textarea固定高度或行高不同于字体大小,所以你检查你的css并设置流量此代码的高度: 并尝试

input{ line-height: inherit;
font-size: 30px;
height: 50px;}

答案 1 :(得分:0)

最后得到解决方案使用此媒体查询IE 10文本框文本顶部修剪问题。

@media screen and (min-width:0\0) {
            /* IE9 and IE10 rule sets go here */
            input[type=text] {

                line-height:100%;
                font-size:18px;
                height:18px;
            }


        }