기본값 : medium (16px = 1em)
<style>
.parent {
font-size: 20px;
}
.child {
font-size: 1em;
}
</style>
굵기
를 지정기본값 : normal(400)
normal
(400) 과 bold
(700)를 많이 사용하고, <style>
body {
padding: 0 20px;
font-family: 'Open Sans';
}
.w600 { font-weight: 600; }
</style>
</head>
<body>
<p class="w600">This is 600 weight</p>
</body>
기본 값 : normal
텍스트의 기울기에 대한 각도
를 추가로 지정할 수 있다. (기본은 14도, 유효한 값: -90 ~ 90도)font-weight oblique <각도>;
기본 값 : normal
<style>
p {
font-variant: small-caps;
}
</style>