rbc

Form

<rbc> ... </rbc>

Attributes

attribute default description
id none specifies the unique ID
class none specifies the style sheet class
style none specifies the style sheet

Support

XHTML 1.1

Explanation

The rbc tag groups a text having ruby text (furigana : japanese reading aid). This allows a ruby text to be placed one-on-one above each text. If one reuby text is assigned to one text, use the rbc tag in combination with the <rtc> tag.

Related Tags

rb_, rp_, rt_, rtc, ruby

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>
The ruby text (furigana) can be placed above each text.<br>
<ruby xml:lang="ja">
<rbc>
<rb>魑</rb>
<rb>魅</rb>
<rb>魍</rb>
<rb>魎</rb>
</rbc>
<rtc>
<rt>ち</rt>
<rt>み</rt>
<rt>もう</rt>
<rt>りょう</rt>
</rtc>
</ruby>
</p>
</body>
</html>