aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/css/font-synthesis/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/css/font-synthesis/index.html')
-rw-r--r--files/ko/web/css/font-synthesis/index.html111
1 files changed, 111 insertions, 0 deletions
diff --git a/files/ko/web/css/font-synthesis/index.html b/files/ko/web/css/font-synthesis/index.html
new file mode 100644
index 0000000000..99810d8517
--- /dev/null
+++ b/files/ko/web/css/font-synthesis/index.html
@@ -0,0 +1,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">&lt;em class="syn"&gt;절 합성하세요! Synthesize!&lt;/em&gt;
+&lt;br/&gt;
+&lt;em class="no-syn"&gt;절 합성하지 마세요! Synthesize!&lt;/em&gt;
+</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>