<p class="basic">the font-size of this p elemnet is 16px</p>

<p> body에서 설정한 기본 폰트 24px </p>
<div class="percent">the font-size of this div elemnet is 150%</div>
<div class="px">the font-size of this div elemnet is 36px</div>
body {
  font-size: 24px;
}

p.basic {
  font-size: 16px;
}

div.percent {
  font-size: 150%;
}

div.px {
  font-size: 36px;
}

div {
  border: 1px solid black;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.