As you can see from here, mdButton will set your text with uppercase letters. What if I want to make lowercase?
Write your own class using css text-transform such as,
.tolowercase {
text-transform: lowercase;
}
.tocapitalize {
text-transform: capitalize;
}
And apply it to the input/button.
If you want htis behaviour throughout the system override the .md-button class in your css,
.md-button {
text-transform: capitalize !important;/*For Lower case use lowercase*/
}
Remove the text-transform from md-button
in CSS:
md-button {
text-transform: none
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With