font ์์ฑ์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
font-family | ๊ธ๊ผด |
font-style | ์ดํค๋ฆญ์ฒด ๋ฑ์ ๊ธ๊ผด์ ์คํ์ผ ์ง์ |
font-size | ๊ธ์ ํฌ๊ธฐ |
font-weight | ๊ธ์ ๋๊ป |
line-height | ์ค ๊ฐ๊ฒฉ |
1. font-family
font-family ์์ฑ๊ฐ์ด ์ฌ๋ฌ ๊ฐ์ ๊ธ๊ผด๋ก ์ค์ ๋์ด ์์ผ๋ฉด, ์น ๋ธ๋ผ์ฐ์ ๋ ์์์๋ถํฐ ์์๋๋ก ๊ธ๊ผด์ ์ฝ์ด ๋ค์ ๋๋ค.
๋ง์ฝ ์ฌ์ฉ์์ ์ปดํจํฐ์ ์ฒซ ๋ฒ์งธ๋ก ์ฝ์ด ๋ค์ธ ๊ธ๊ผด์ด ์์ผ๋ฉด ๋ค์ ๊ธ๊ผด์ ํ์ธํ๊ฒ ๋ฉ๋๋ค.
<style>
.serif { font-family: "Times New Roman", Times, serif; }
</style>
2. font-style
font-style ์์ฑ์ ์ฃผ๋ก ์ดํค๋ฆญ์ฒด๋ฅผ ์ฌ์ฉํ๊ธฐ ์ํด ์ฌ์ฉํ๋ฉฐ, ๋ค์๊ณผ ๊ฐ์ด 3๊ฐ์ง์ ์์ฑ๊ฐ์ ๊ฐ์ง๋๋ค.
<style>
.italic { font-style: italic; }
</style>
3. font-size
font-size ๋ ๊ธ์ ํฌ๊ธฐ๋ฅผ ์๋ฏธํฉ๋๋ค.
<style>
.heading { font-size: 50px; }
</style>
4. font-weight
font-weight ์์ฑ์ ํ ์คํธ๋ฅผ ์ผ๋ง๋ ๋๊ป๊ฒ ํํํ ์ง๋ฅผ ์ค์ ํฉ๋๋ค.
์ฌ์ฉํ ์ ์๋ ์์ฑ๊ฐ์๋ lighter, normal, bold, bolder ๋ฑ์ด ์์ต๋๋ค.
<style>
.we { font-weight: 600; }
.bold { font-weight: bold; }
</style>
5. line-height
line-height ์์ฑ์ ์ค ๊ฐ๊ฒฉ์ ์ค์ ํฉ๋๋ค.
<style>
.we { line-height: 50%; }
</style>
'Web > ๐งฉ html + CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํฌ๊ธฐ (0) | 2020.11.03 |
---|---|
background ์์ฑ (0) | 2020.11.03 |
์ปฌ๋ฌ (0) | 2020.11.03 |
๊ฒฐํฉ ์ ํ์ (0) | 2020.11.03 |
์ ํ์ (0) | 2020.11.03 |