RadzenTabs Name

I used the following codes:

I don't understand why the tab name Subtopics and Reference are changed to all capitalized words.

.

Thanks,

Hi @Angela_Lee,

This is the default text transform in Material Theme. Material design language defines all tab names as uppercase. To use the default text capitalization you can either use another theme or add the following CSS to your styles:

:root {
    --rz-tabs-tab-text-transform: none;
}
1 Like