--- title: font-weight slug: Web/CSS/font-weight translation_of: Web/CSS/font-weight browser-compat: css.properties.font-weight ---
font-weight
CSS 속성은 폰트(font)의 가중치(weight)나 굵기(boldness)를 명시한다. 몇몇 폰트들은 normal
나 bold
일 때만 가능하다.
{{cssinfo}}
font-weight: normal; font-weight: bold; /* Relative to the parent */ font-weight: lighter; font-weight: bolder; font-weight: 100; font-weight: 200; font-weight: 300; font-weight: 400; font-weight: 500; font-weight: 600; font-weight: 700; font-weight: 800; font-weight: 900; /* Global values */ font-weight: inherit; font-weight: initial; font-weight: unset;
normal
400
과 같음.bold
700
과 같음.lighter
bolder
100
, 200
, 300
, 400
, 500
, 600
, 700
, 800
, 900
만약 정확히 주어진 가중치를 사용할 수없다면, 실제로 렌더링 되는 가중치를 결정하기 위해 다음과 같은 경험적 접근이 적용된다:
500
초과의 가중치가 주어지면, 가능한 굵은(darker) 가중치 중 가장 가까운 것이 사용된다 (만약 없다면, 얇은(lighter) 가중치 중 가장 가까운 것).400
미만의 가중치가 주어지면, 가능한 얇은 가중치 중 가장 가까운 것이 사용된다 (만약 없다면, 굵은 가중치 중 가장 가까운 것).400
이 주어지면, 500
이 사용된다. 만약 500
이 불가능하면, 500
미만의 폰트 가중치를 위한 경험적 접근이 사용된다.500
이 주어지면, 400
이 사용된다. 만약 400
이 불가능하면, 400
미만의 폰트 가중치를 위한 경험적 접근이 사용된다.이것은 normal
과 bold
만 지원하는 폰트일 경우, 100-500 은 normal, 600-900 은 bold 임을 의미한다.
lighter
나 bolder
가 주어진 경우, 요소의 절대적인 가중치를 계산하기 위해 다음 차트가 사용된다:
상속된 값 | bolder |
lighter |
---|---|---|
100 | 400 | 100 |
200 | 400 | 100 |
300 | 400 | 100 |
400 | 700 | 100 |
500 | 700 | 100 |
600 | 900 | 400 |
700 | 900 | 400 |
800 | 900 | 700 |
900 | 900 | 700 |
100~900 의 가중치 값들은 다음의 일반적인 두께 이름으로 대응된다:
100
200
300
400
500
600
700
800
900
font-weight
값은 100 단위로 보간된다. 보간은 실수 공간에서 이루어지며 100의 배수에 가까운 값으로 어림한다. 100의 배수 중간의 값들은 양의 무한대 방향의 가까운 값으로 어림한다.
<p> Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, 'and what is the use of a book,' thought Alice 'without pictures or conversations?' </p> <div>I'm heavy<br/> <span>I'm lighter</span> </div>
/* Set paragraph text to be bold. */ p { font-weight: bold; } /* Set div text to two steps darker than normal but less than a standard bold. */ div { font-weight: 600; } /* Sets text enclosed within span tag to be one step lighter than the parent. */ span { font-weight: lighter; }
{{EmbedLiveSample("Examples","400","300")}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Fonts', '#font-weight-prop', 'font-weight')}} | {{Spec2('CSS3 Fonts')}} | 변경사항 없음 |
{{SpecName('CSS3 Transitions', '#animatable-css', 'font-weight')}} | {{Spec2('CSS3 Transitions')}} | font-weight 이 animatable 로 정의됨 |
{{SpecName('CSS2.1', 'fonts.html#propdef-font-weight', 'font-weight')}} | {{Spec2('CSS2.1')}} | 변경사항 없음 |
{{SpecName('CSS1', '#font-weight', 'font-weight')}} | {{Spec2('CSS1')}} | 초기 정의 |
{{Compat}}