The <rb>
is used to delimit the base text component of a <ruby>
annotation, i.e. the text that is being annotated. One <rb>
element should wrap each separate atomic segment of the base text.
Content categories | None. |
---|---|
Permitted content | As a child of a <ruby> element. |
Tag omission | The end tag can be omitted if the element is immediately followed by an <rt> , <rtc> , or <rp> element or another <rb> element, or if there is no more content in the parent element. |
Permitted parents | A <ruby> element. |
Permitted ARIA roles | Any |
DOM interface | HTMLElement |
This element only includes the global attributes.
<rb>
element is used to separate out each segment of the ruby base text.<rb>
is not an empty element, it is common to just include the opening tag of each element in the source code, so that the ruby markup is less complex and easier to read. The browser can then fill in the full element in the rendered version.<rt>
element for each base segment/<rb>
element that you want to annotate.In this example, we provide an annotation for the original character equivalent of "Kanji":
<ruby> <rb>漢<rb>字 <rp>(</rp><rt>kan<rt>ji<rp>)</rp> </ruby>
Note how we've included two <rb>
elements, to delimit the two separate parts of the ruby base text. The annotation on the other hand is delimited by two <rt>
elements.
Note that we could also write this example with the two base text parts annotated completely separately. In this case we don't need to include <rb>
elements:
<ruby> 漢 <rp>(</rp><rt>Kan</rt><rp>)</rp> 字 <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby>
The output looks like so:
The HTML above might look something like this when rendered by a browser without ruby support:
Note: See the article about the <ruby>
element for further examples.
Specification | Status | Comment |
---|---|---|
HTML5 The definition of '<rb>' in that specification. | Recommendation |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 5 | No | 38 | 5 | 15 | 5 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | No | 38 | 15 | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rb