Textarea height squeezed in responsive for max-width 480px
Created by: nicolashery
I don't know if this is intended but <textarea>
inputs loose their height (say I set it to rows="3"
) when using a smartphone.
Starting line 22 in bootstrap-responsive.css:
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
display: block;
width: 100%;
height: 28px;
I would remove height: 28px;
from that and apply it to all inputs except textarea[class*="span"]
?
Thanks Nicolas