본문 바로가기
my_lesson/_CSS3

CSS font attribute

by boolean 2015. 3. 22.
728x90

font attribute



글꼴 스타일을 각각 지정하기


p
{
font-style:italic;   normal, italic, oblique
font-variant: small-caps;   normal, small-caps
font-weight:bold;   bold, 100~900, bolder, lighter
font-size:17px;   px, pt, %, em
font-family:arial, "Times New Roman",sans;    serif, sans-serif
}

글꼴 전체스타일을 한번에 지정하기


p
{
font: italic small-caps bold 17px arial, "Times New Roman",sans
}

댓글