๐Ÿ”ธrem

โ•ฑ๐Ÿšง under construction -> :root, <html>, document.documentElement

CSS โŸฉ values โŸฉ relative โŸฉ units โŸฉ rem

rem = <html> ็š„ font-size

โญ rem ๆ˜ฏ โ€œroot emโ€ ็š„็ธฎๅฏซ๏ผŒr ๆŒ‡ :root (<html>)ใ€‚

/* :root = html */
:root { font-size: 16px; }  /* โญ๏ธ ๅฎš็พฉ rem = 16px */

h1 { font-size: 2rem; }     /* 2rem = 32px */
p  { font-size: 1rem; }     /* 1rem = 16px */

Last updated