M é m o - l a b .
px, em ou rem ?
La compréhension par le code :
<!DOCTYPE html>
<html lang="fr" style="font-size: 10px">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="block" style="font-size: 20px">
<p style="font-size: 2em">Affichage en 40px (2*20px)</p>
<p style="font-size: 2rem">Affichage en 20px (2*10px)</p>
</div>
</body>
</html>