글꼴 크기를 픽셀로 설정하려면 em 을 사용하십시오. 단위, 글꼴 크기 재산.
1em = 16px
예시
다음 코드를 실행하여 em
으로 글꼴 크기를 설정할 수 있습니다.<!DOCTYPE html>
<html>
<head>
<style>
h1 {
/* 30px/16 = 1.875em */
font-size: 1.875em;
}
</style>
</head>
<body>
<h1>This is demo heading</h1>
<p>This is demo text.</p>
</body>
</html>