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