Search code examples
htmlcssasp.nettwitter-bootstrapinternet-explorer-10

asp.net textbox text on IE 10 after apply bootstrap


After apply bootstrap asp.net textbox shows text like this. How to solve this issue? I applied line-height:0. But no effect.this is the issue


Solution

  • Finally got the solution use this media query for IE 10 textbox text top bottom trim issue.

    @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;
                }
    
    
            }