aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/html/element/rb/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/html/element/rb/index.html')
-rw-r--r--files/ko/web/html/element/rb/index.html150
1 files changed, 150 insertions, 0 deletions
diff --git a/files/ko/web/html/element/rb/index.html b/files/ko/web/html/element/rb/index.html
new file mode 100644
index 0000000000..b34272a9e3
--- /dev/null
+++ b/files/ko/web/html/element/rb/index.html
@@ -0,0 +1,150 @@
+---
+title: '<rb>: 루비 베이스 요소'
+slug: Web/HTML/Element/rb
+tags:
+ - Element
+ - HTML
+ - HTML text-level semantics
+ - Reference
+ - Ruby
+ - Text
+ - Web
+translation_of: Web/HTML/Element/rb
+---
+<div>{{HTMLRef}}</div>
+
+<p><span class="seoSummary"><strong>HTML <code>&lt;rb&gt;</code> 요소</strong>는 {{HTMLElement("ruby")}} 표기의 기반 텍스트 구성요소(루비 주석을 적용하려는 글자)를 나눌 때 사용합니다.</span> 하나의 <code>&lt;rb&gt;</code> 요소는 기반 텍스트에서의 최소 단위를 하나 감싸야 합니다.</p>
+
+<div class="hidden">\{{EmbedInteractiveExample("pages/tabbed/rb.html", "tabbed-standard")}}</div>
+
+
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row"><a href="/ko/docs/Web/Guide/HTML/Content_categories">콘텐츠 카테고리</a></th>
+ <td>없음.</td>
+ </tr>
+ <tr>
+ <th scope="row">가능한 콘텐츠</th>
+ <td>{{htmlelement("ruby")}} 요소의 자손.</td>
+ </tr>
+ <tr>
+ <th scope="row">태그 생략</th>
+ <td>바로 뒤따르는 요소가 {{HTMLElement("rt")}}, {{HTMLElement("rtc")}}, {{HTMLElement("rp")}}, 다른 <code>&lt;rb&gt;</code> 요소거나, 자신이 부모의 마지막 요소라면 닫는 태그를 생략할 수 있습니다.</td>
+ </tr>
+ <tr>
+ <th scope="row">가능한 부모 요소</th>
+ <td>{{htmlelement("ruby")}} 요소.</td>
+ </tr>
+ <tr>
+ <th scope="row">가능한 ARIA 역할</th>
+ <td>모두</td>
+ </tr>
+ <tr>
+ <th scope="row">DOM 인터페이스</th>
+ <td>{{domxref("HTMLElement")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="특성">특성</h2>
+
+<p>이 요소는 <a href="/ko/docs/Web/HTML/Global_attributes">전역 특성</a>만 포함합니다.</p>
+
+<h2 id="사용_일람">사용 일람</h2>
+
+<ul>
+ <li>루비 주석은 일본어 후리가나, 타이완어 주음부호와 같이 동아시아 문자의 발음 표기에 사용합니다. <code>&lt;rb&gt;</code> 요소는 기반 텍스트의 각 조각을 나타내는 용도입니다.</li>
+ <li><code>&lt;rb&gt;</code>는 {{glossary("empty element", "빈 요소")}}가 아니지만, 보통 소스 코드에는 여는 태그만 사용해 루비 마크업을 덜 복잡하고 읽기 쉽게 합니다. 브라우저가 렌더링 때 알아서 닫는 태그를 추가합니다.</li>
+ <li>각각의 <code>&lt;rb&gt;</code> / 기반 조각 하나마다 {{htmlelement("rt")}} 요소 하나를 작성해야 합니다.</li>
+</ul>
+
+<h2 id="예제">예제</h2>
+
+<p>다음 예제는 "경복궁"의 한자/한글 표기를 병행합니다.</p>
+
+<pre class="brush: html">&lt;ruby&gt;
+ &lt;rb&gt;景&lt;rb&gt;福&lt;rb&gt;宮
+ &lt;rp&gt;(&lt;/rp&gt;&lt;rt&gt;경&lt;rt&gt;복&lt;rt&gt;궁&lt;rp&gt;)&lt;/rp&gt;
+&lt;/ruby&gt;</pre>
+
+<p>세 개의 <code>&lt;rb&gt;</code> 요소를 사용해 기반 글자(한자)를 세 개로 나눴습니다. 반면, 한글 표기는 세 개의 {{htmlelement("rt")}} 요소를 사용합니다.</p>
+
+<p>세 개의 기반 조각을 완전히 분리해 작성할 수도 있다는 점을 알아두세요. 이 때는 <code>&lt;rb&gt;</code> 요소를 사용하지 않아도 됩니다.</p>
+
+<pre class="brush: html">&lt;ruby&gt;
+ 景 &lt;rp&gt;(&lt;/rp&gt;&lt;rt&gt;경&lt;/rt&gt;&lt;rp&gt;)&lt;/rp&gt;
+ 福 &lt;rp&gt;(&lt;/rp&gt;&lt;rt&gt;복&lt;/rt&gt;&lt;rp&gt;)&lt;/rp&gt;
+ 宮 &lt;rp&gt;(&lt;/rp&gt;&lt;rt&gt;궁&lt;/rt&gt;&lt;rp&gt;)&lt;/rp&gt;
+&lt;/ruby&gt;</pre>
+
+<div class="hidden">
+<div id="with-ruby">
+<pre class="brush: html">&lt;ruby&gt; &lt;rb&gt;景&lt;rb&gt;福&lt;rb&gt;宮 &lt;rp&gt;(&lt;/rp&gt;&lt;rt&gt;경&lt;rt&gt;복&lt;rt&gt;궁&lt;rp&gt;)&lt;/rp&gt; &lt;/ruby&gt;
+</pre>
+
+<pre class="brush: css">body {
+ font-size: 22px;
+}</pre>
+</div>
+</div>
+
+<p>결과는 다음과 같습니다.</p>
+
+<p>{{EmbedLiveSample("with-ruby", "100%", 60)}}</p>
+
+<p>루비 주석을 지원하지 않는 브라우저에서는 아래와 같이 출력합니다.</p>
+
+<div id="without-ruby">
+<div class="hidden">
+<pre class="brush: html">景福宮 (경복궁)</pre>
+
+<pre class="brush: css">body {
+ font-size: 22px;
+}
+</pre>
+</div>
+</div>
+
+<p>{{EmbedLiveSample("without-ruby", "100%", 60)}}</p>
+
+<div class="note">
+<p><strong>참고</strong>: {{HTMLElement("ruby")}} 요소 참고서를 방문해 다른 예제도 살펴보세요.</p>
+</div>
+
+<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('HTML5 W3C', 'textlevel-semantics.html#the-rb-element', '&lt;rb&gt;')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="브라우저_호환성">브라우저 호환성</h2>
+
+
+
+<p>{{Compat("html.elements.rb")}}</p>
+
+<h2 id="같이_보기">같이 보기</h2>
+
+<ul>
+ <li>{{HTMLElement("ruby")}}</li>
+ <li>{{HTMLElement("rt")}}</li>
+ <li>{{HTMLElement("rp")}}</li>
+ <li>
+ <p>{{HTMLElement("rtc")}}</p>
+ </li>
+</ul>