android - HTML text input not showing in Droid -


for reason, on droid, <input type="text"> field not showing correctly. not show user typed until user moves on next field. checked on online forums , seems may droid internal issue. however, despite that, there way around it? (note: i'm using bootstrap.js , input field inheriting css styles it. not sure if bootstrap plays nicely droid?)

here's html input fields (not sure if matters):

<label for="firstname">first name*</label> <input type="text" class="requiredinput" name="firstname" value=""> <label for="lastname" class="">last name*</label> <input type="text" class="requiredinput" name="lastname" value=""> 

here's css applies field, apart bootstrap.js css:

width: 100%; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; padding: 12px 4px; margin-bottom: 12px; 

thanks so!

i removed css styles except margin-bottom (so became plain-looking input field) , worked.


Comments

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -