TextBox CssClass not working

<SfTextBox CssClass="text-custom" …. 

<style>
 .text-custom {
       font-size: 36px;
 }
</style

1 Reply 1 reply marked as answer

SN Sevvandhi Nagulan Syncfusion Team July 16, 2020 06:16 AM UTC

Hello Mr Andrey, 
 
Greetings from Syncfusion support. 
 
 
We checked the reported requirement. The cause of the problem you set the style for component incorrectly. You have to traverse the class and set the theme.  Refer to the code below, 
 
 
<style> 
 
    .e-input-group.e-control-wrapper.text-custom 
     { 
        font-size: 36px; 
    } 
</style> 
 
Regards, 
Sevvandhi N 


Marked as answer
Loader.
Up arrow icon