blob: 99810d8517be85ae92a5e01b39e95aeaeb600cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
---
title: font-synthesis
slug: Web/CSS/font-synthesis
tags:
- CSS
- CSS Fonts
- CSS Property
- Reference
- 'recipe:css-property'
translation_of: Web/CSS/font-synthesis
---
<div>{{CSSRef}}</div>
<p><a href="/en-US/docs/Web/CSS">CSS</a> <strong><code>font-synthesis</code></strong> 속성은 브라우저가 굵은 글꼴과 이탤릭 글꼴을 합성하는 것을 허용할지 설정합니다.</p>
<div>{{EmbedInteractiveExample("pages/css/font-synthesis.html")}}</div>
<h2 id="구문">구문</h2>
<p><code>font-synthesis</code>는 다음 방법 중 하나를 사용해 지정합니다.</p>
<ul>
<li><code>none</code> 키워드.</li>
<li><code>weight</code> 또는 <code>style</code> 키워드.</li>
<li><code>weight</code>와 <code>style</code> 키워드.</li>
</ul>
<h3 id="값">값</h3>
<dl>
<dt><code>none</code></dt>
<dd>굵은 글꼴과 이탤릭 글꼴의 합성을 금지합니다.</dd>
<dt><code>weight</code></dt>
<dd>필요한 경우 굵은 글꼴을 합성할 수 있습니다.</dd>
<dt><code>style</code></dt>
<dd>필요한 경우 이탤릭 글꼴을 합성할 수 있습니다.</dd>
</dl>
<h2 id="설명">설명</h2>
<p>대부분의 표준 서양 글꼴은 이탤릭과 굵은 글꼴을 포함하고 있으나 상용 글꼴은 그렇지 않은 경우도 많습니다. 한국, 중국, 일본을 포함한 비 알파벳 문화권의 문자 체계는 보통 이런 변형을 포함하지 않으며 브라우저의 글꼴 합성으로 인해 가독성이 떨어질 수 있습니다. 이 두 가지 경우에 대해 <code>font-synthesis</code>를 사용해 기본 글꼴 합성을 끄는 것이 좋을 수도 있습니다.</p>
<h2 id="형식_정의">형식 정의</h2>
<p>{{cssinfo}}</p>
<h2 id="형식_구문">형식 구문</h2>
<pre class="syntaxbox notranslate">{{csssyntax}}</pre>
<h2 id="예제">예제</h2>
<h3 id="글꼴_합성_비활성화">글꼴 합성 비활성화</h3>
<h4 id="HTML">HTML</h4>
<pre class="brush: html notranslate"><em class="syn">절 합성하세요! Synthesize!</em>
<br/>
<em class="no-syn">절 합성하지 마세요! Synthesize!</em>
</pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css notranslate">em {
font-weight: bold;
}
.syn {
font-synthesis: style weight;
}
.no-syn {
font-synthesis: none;
}
</pre>
<h4 id="결과">결과</h4>
<p>{{ EmbedLiveSample('글꼴_합성_비활성화', '', '50') }}</p>
<h2 id="명세">명세</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Fonts', '#propdef-font-synthesis', 'font-synthesis')}}</td>
<td>{{Spec2('CSS3 Fonts')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("css.properties.font-synthesis")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li>{{cssxref("font-style")}}</li>
<li>{{cssxref("font-weight")}}</li>
</ul>
|