Simplex

HTML elements

R elements


rp

Represents a container for parentheses used to wrap ruby text ) inside a ruby element. These are displayed by browsers which don't support ruby, allowing for graceful degradation of ruby content. Browsers which support ruby hide rp via display:none.

N/A
<ruby>
  漢 <rp>(</rp><rt>Kan</rt><rp>)</rp>
  字 <rp>(</rp><rt>ji</rt><rp>)</rp>
</ruby>

rt

Represents a container for ruby text inside a ruby element. rt content becomes the small annotations rendered by default above horizontal base text or to the right of vertical base text.

N/A
<ruby>
  漢 <rt>Kan</rt>
  字 <rt>ji</rt>
</ruby>

ruby

Represents a container for base text and ruby text — small annotations used for phonetic readings in languages such as Japanese and Chinese. Examples include furigana and zhùyin fúhào (bopomofo).

N/A
<ruby>
  明日 <rp>(</rp><rt>Ashita</rt><rp>)</rp>
</ruby>