Is there a difference between directly writing uppercase text within HTML tag like this:
<h3> MY TEXT HERE </h3>
or not having directly uppercase and transform it with CSS like this:
<h3> My text here </h3>
CSS:
h3 { text-transform: uppercase;} ;
Which would load faster in the browser? And why?
It's not a question of which would load faster even though the upper case would "load faster" than loading the extra bytes from the css.
In my opinion, there is a question of accessibility involved in that matter.
You should write the text as it is supposed to be written for a vocal reader to read it (for blind people).
Morevover, I would personnaly write it with the text-transform as it's easy to change if you have a lot of h3 in your website and you don't want to write them all over again if you change the way your h3s look.
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