Search code examples
reactjsmaterial-ui

How do I make the letters in my material-ui button not all capitalized?


In my code, the letters in the word "Add" are not all capitalized

My code:

enter image description here

but when it renders it capitalizes all.

The result:

enter image description here


Solution

  • You probably need to apply text-transform css in the buttons style.

    <Button sx={{ml:6, textTransform: 'lowercase'}}>Add</Button>
    

    I used lowercase in the example, but you may use other values.