font size test, rem vs px. 2026-04

2026-04-29 font size test, rem vs px.

font-size: 32px; vs font-size: 2rem;

if user has set default font size in browser, the rem respect it, px does not.

this box has width 200px
this box has width 10rem

they are same because we set

:root {
 font-size: 20px;
}

same effect if you change font size in browser.