Gel Maj
Gel Maj

Reputation: 1

Change the width of a textbox in jquery mobile

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

Answers (1)

chandresh_cool
chandresh_cool

Reputation: 11830

Try like this

.ui-input-text    
{
    width: 20% !important;

}

Upvotes: 2

Related Questions