Trio ȨÆäÀÌÁö CSS ¸Å´º¾ó ÆùÆ® Ư¼º ¿¹Á¦ ¸Þ´º·Î
CSS2 ±Ô°Ý ÆùÆ® ÂüÁ¶ HTML ±Ô°Ý Á¤·Ä, ÆùÆ® ½ºÅ¸ÀÏ ÂüÁ¶
ÆùÆ® ±Û²Ã
font-family
⇒ ⇒ ⇒

CSS1 ±Ô°Ý
ÆùÆ® ±Û²Ã ¼³¸í

»ç¿ë ÇÒ ±Û²Ã(font Á¾·ù)¸¦ ÁöÁ¤ ÇÑ´Ù. ÄÞ¸¶(,)·Î ¿¹ºñ ±Û²ÃÀ» ÁöÁ¤ ÇÒ ¼ö ÀÖ°í, ¾Õ¿¡¼­ºÎÅÍ ¿ì¼± Àû¿ëµÈ´Ù. »ç¿ëÀÚ°¡ È®½ÇÈ÷ °®°í ÀÖÀ» ±Û²ÃÀ» »ç¿ëÇÏ´Â °ÍÀÌ ÁÁ´Ù.
ÀϹÝÀûÀÎ ±Û²ÃµéÀº:

±¼¸², ±¼¸²Ã¼, ±Ã¼­, ±Ã¼­Ã¼, µ¸¿ò, µ¸¿òü, ¹ÙÅÁ, ¹ÙÅÁü, Arial, Arial Black, Arial Narrow, Bookman Old Style, Comic Sans MS, Courier New, Garamon, Geogia, Impact, MingLiU, Minon Web, Morden, Monotype.com, MS Gothic, MS Hei, MS Song, Time New Roman, Trebuchet MS, Verdana

font-family ¸ñ·Ï

.font1 {font-family: Helvetica,sans-serif;}

¿¹Á¦
<STYLE type="text/css"> .font1 {font-family: ±Ã¼­Ã¼,'Comic Sans MS';} </STYLE> <table border=1 width=80%><tr> <td>Font ¹Ì ÁöÁ¤</td> <td><span class=font1>±Ã¼­Ã¼,'Comic Sans MS' Font ÁöÁ¤</span> </td></tr></table>

°á°ú

Font ¹Ì ÁöÁ¤ ±Ã¼­Ã¼,'Comic Sans MS' Font ÁöÁ¤

ÆùÆ® ½ºÅ¸ÀÏ
font-style
italics, oblique, normal

CSS1 ±Ô°Ý
ÆùÆ® ½ºÅ¸ÀÏ ¼³¸í
font-styleÀÌ italics, oblique ³ª normal ÀÓÀ» ÁöÁ¤ÇÑ´Ù.
EM {font-style: oblique;}
.font2 {font-style: oblique;}

¿¹Á¦

<STYLE type="text/css">
 .font2 {font-style: normal;}
 .font3 {font-style: oblique;} 
</STYLE>

<table><tr>
 <td class=font2>Font normal ÁöÁ¤</td>
 <td class=font3>Font italic ÁöÁ¤</td>
</tr></table>

°á°ú
Font normal ÁöÁ¤ Font italic ÁöÁ¤

ÆùÆ® º¯ÀÌ
font-variant
small-caps, normal

CSS1 ±Ô°Ý
ÆùÆ® º¯ÀÌ ¼³¸í
font¸¦ ÀÛÀº ´ë¹®ÀÚ(small-caps) À̳ª normal·Î ÁöÁ¤ ÇÑ´Ù.
H3 {font-variant: small-caps;}
.font5 {font-variant: small-caps;}

¿¹Á¦

<STYLE type="text/css">
 .font4 {font-variant: normal;}
 .font5 {font-variant: small-caps;} 
</STYLE>

<table><tr>
 <td class=font4>Font normal ÁöÁ¤</td>
 <td class=font5>Font small-caps ÁöÁ¤</td>
</tr></table>

°á°ú
Font normal ÁöÁ¤ Font small-caps ÁöÁ¤

ÆùÆ® ±½±â
font-weight
normal, bold, bolder, lighter, ±æÀÌ

CSS1 ±Ô°Ý
ÆùÆ® ±½±â ¼³¸í
font¸¦ µÎ²®°Ô ȤÀº ¾ã°Ô ¼öÄ¡·Î ÁöÁ¤ ÇÑ´Ù.
B {font-weight: 700;}
.font6 {font-weight: 700;}

¿¹Á¦

<STYLE type="text/css">
 .font6 {font-weight: 700;}
</STYLE>

<table><tr>
 <td>Font º¸Åë(¹Ì ÁöÁ¤)</td>
 <td class=font6>font-weight 700 ÁöÁ¤</td>
</tr></table>

°á°ú
Font º¸Åë(¹Ì ÁöÁ¤) font-weight 700 ÁöÁ¤

ÆùÆ® Å©±â
font-size
⇒ ⇒ ⇒

CSS1 ±Ô°Ý
ÆùÆ® Å©±â ¼³¸í
font Å©±â¸¦
Àý´ë Å©±â(absolute size)
   xx-small, x-small, small, medium, large, x-large, xx-large,
   size(length: px)
ȤÀº
»ó´ë Å©±â(relative size)
   larger, smaller, ¹éºÐÀ² Å©±â(percentage: %)·Î ÁöÁ¤ ÇÑ´Ù.
H2 {font-size: 200%;}
.font7 {font-size: 36pt;}

¿¹Á¦

<STYLE type="text/css">
 .font7 {font-size: 14pt;}
 .font8 {font-size: 80%;}
</STYLE>

<table><tr>
 <td class=font7>font-size 14pt ÁöÁ¤</td>
 <td class=font8>font-size 80% ÁöÁ¤</td>
</tr></table>

°á°ú
font-size 14pt ÁöÁ¤ font-size 80% ÁöÁ¤

ÆùÆ® º¹ÇÕ ¸í·É
font
⇒ ⇒ ⇒

CSS1 ±Ô°Ý
ÆùÆ® º¹ÇÕ¸í·É ¼³¸í
°£·«ÇÏ°Ô ÆùÆ®ÀÇ ¿©·¯ Ư¼ºÀ»  Çѹø¿¡ ÁöÁ¤ ÇÒ ¼ö Àִµ¥
ÁöÁ¤ÇÏ´Â ¼ø¼­´Â ¹Ù²î¸é ¾Ê°í  ¼ø¼­´Â
   font{font-style font-variant font-weight
      font-size/line-height font-family ;}
 ÀÌ¸ç ºóÄ­À¸·Î ±¸ºÐ µÇ°í  °ªÀº »ý·« µÉ ¼ö ÀÖ´Ù.
P {font: italic nomal bold 12pt/14pt ±Ã¼­,'Courier New';}
.font9 {font: bold 12pt/14pt Helvetica,sans-serif;}

¿¹Á¦

<STYLE type="text/css">
 .font9 {font: normal 10pt/12pt ±Ã¼­Ã¼}
 .font10 {font: bold 11pt/13pt Helvetica,sans-serif;}
</STYLE>

<table>
<tr><td class=font9>bold 10pt/12pt ±Ã¼­Ã¼ ÁöÁ¤</td></tr>
<tr><td class=font10>
   italic normal 10pt/13pt Bookman Old Style ÁöÁ¤</td></tr>
</table>

°á°ú
bold 10pt/12pt ±Ã¼­Ã¼ ÁöÁ¤
italic normal 10pt/13pt Bookman Old Style ÁöÁ¤

¼Ò°³ ÀÏ¹Ý ÅؽºÆ® ÆùÆ® ¹Ú½º »ö»ó ¸ñ·Ï »öÀÎ ¿¹Á¦
¹ø¿ª¹® ¼ÒÀ¯ÀÚ - Trio ȨÆäÀÌÁö Á¦°ø
ÀÌ ¹®¼­(http://trio.co.kr/webrefer/css/cssfont.html)´Â
ÀÚÀ¯·ÎÀÌ ¿¬°á »ç¿ëÀÌ °¡´ÉÇÔ.
¹ø¿ª¹® ¼ÒÀ¯ÀÚ - Trio ȨÆäÀÌÁö ÀÌÀü ÆäÀÌÁö ÆäÀÌÁö ¸ÇÀ§ ´ÙÀ½ ÆäÀÌÁö(ÀÌÀü ÆäÀÌÁö·Î À̵¿ ÇßÀ» ¶§ ¸¸)