๐Ÿ”ธem

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

CSS โŸฉ values โŸฉ relative โŸฉ units โŸฉ em

em = ่‡ชๅทฑ็š„ font-size (ๅฏ่ƒฝๆ˜ฏ่‡ชๅทฑ่จญๅฎš๏ผŒๆˆ–็นผๆ‰ฟไพ†็š„)

๐Ÿ“ css ๐Ÿ‘‰ codepen

/* em = ่‡ชๅทฑ็š„ font-size (่‡ชๅทฑ่จญๅฎšๆˆ–็นผๆ‰ฟไพ†) */
html    { font-size: 16px;  }    /* em = 16px */

div     { font-size: 2em;   }    /*   2em = 2   * 16px = 32px */
p       { font-size: 0.5em; }    /* 0.5em = 0.5 * 32px = 16px */
p.case2 { font-size: 1.5em; }    /* 1.5em = 1.5 * 32px = 48px */

๐Ÿ“ html

<div>
	<!--  em = <html> font-size = 16px -->
	<!-- 2em = 2 * 16px         = 32px -->
	div: 2em = 32px (html: em = 16px)
	<p>
		<!--    em = <div> font-size = 32px -->
		<!-- 0.5em = 0.5 * 32px      = 16px -->
		p: 0.5em = 16px (div: em = 32px)
	</p>
</div>

<div>
	div: 2em = 32px (html: em = 16px)
	<p class="case2">
		<!--    em = <div> font-size = 32px -->
		<!-- 1.5em = 1.5 * 32px      = 48px -->
		p: 1.5em = 48px (div: em = 32px)
	</p>
</div>

Last updated

Was this helpful?