Posts /

CSS:font-weight

Twitter Facebook Google+
30 Oct 2018

CSS : font-weight

p.normal {
    font-weight: normal;
}

p.thick {
    font-weight: bold;
}

p.thicker {
    font-weight: 900;
}

font-weight

이 font-weight속성은 텍스트의 두꺼운 문자 또는 얇은 문자를 표시할지 설정합니다.

속성 값

font-weight: normal|bold|bolder|lighter|number|initial|inherit;


Twitter Facebook Google+