Reputation: 1
any idea how can I control the size of textbox in jquery mobile? I used CSS in percentage e.g. 20% seems it doesn't work.
Upvotes: 0
Views: 2130
Reputation: 11830
Try like this
.ui-input-text { width: 20% !important; }
Upvotes: 2