EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: frankgao on August 19, 2016, 01:08:06 AM



Title: How to set the textbox style?
Post by: frankgao on August 19, 2016, 01:08:06 AM
How to set the textbox fontsize?
like font-size:16px;font-weight:bold;


Title: Re: How to set the textbox style?
Post by: stworthy on August 19, 2016, 01:35:24 AM
Please try this code:
Code:
.textbox .textbox-text,
.textbox .textbox-prompt{
font-size: 16px;
}


Title: Re: How to set the textbox style?
Post by: frankgao on August 19, 2016, 05:43:04 PM
        $('#t1').textbox('textbox').css('font-size', '18px');
        $('#t1').textbox('textbox').css('font-weight', 'bold');

Thanks,I use the method.