Voltar

How to instantly change all text on your website to be lowercase

kami.bearblog.dev 29.01.2026 07:19

Heya!
Did you make that there's a way to, using css exclusively, instantly transform all characters on your website into lowercase?

It's true!
The instruction is called 'text-transform'. It has options for both lowercase, uppercase, and starting every new word with an uppercase letter.

Here's the lowercase css snippet.

* {text-transform: lowercase;}

Here's the documentation for the styling rule

I've decided to apply it globally to my blog for now, for no reason in particular.
Thanks for reading!