|
What is the best units to use in CSS
What, do you think ?, is the best units to use in CSS, if you want text to be able to change size according to whatever the user sets in the browser
Ex. 1
body { font-size: 1em }
p { font-size: 90% }
or ex. 2
body { font-size: 1em }
p { font-size: 0.9em }
|