HTML <rtc> tagS2C Home   « HTML <rtc> tag

Definition

The <rtc> tag specifies Semantic Annotations of characters presented in a ruby annotation.

The <rtc> tag must be nested within the <ruby> tag.

The closing </rtc> tag may be omitted if the <rtc> element is immediately followed by another <rtc> tag, the <rp> tag, the <rtc> tag or if there is no more content in the parent element.

The <rtc> tag was introduced in HTML5.

Example


<ruby>
  伦 <rp>(</rp><rt>lún</rt><rp>)</rp>
  敦 <rp>(</rp><rt>dūn</rt><rp>)</rp>
  <rtc> London</rtc>
</ruby>

(lún)(dūn) London

Attributes

The following attributes can be used with the <rtc> tag.


<rtc> Specific Attributes
Attribute Value Description Example
There are no required or optional attributes specific to the <rtc> tag.
<rtc> Global Attributes
Attribute Description Example
Common
classSpecifies a classname for the element allowing you to apply the style of the predefined class to the content.

<rtc class="name">Semantic Annotations</rtc>
idSpecifies a unique id for the element allowing you to apply the style of the predefined id to the content.

<rtc id="name">Semantic Annotations</rtc>
styleSpecifies an inline style for the element allowing you to apply the style to the contentt.

<rtc style="color:red;">Semantic Annotations</rtc>
titleSpecifies an inline style for the element allowing you to apply the style to the content.

<rtc title="Content info">Semantic Annotations</rtc>
Keyboard
accesskeySpecifies a keyboard shortcut to associate with the element.

<rtc accesskey="a">Semantic Annotations</rtc>
tabindexSpecifies a tab order for the element.

<rtc tabindex="1">Semantic Annotations</rtc>
Language
dirSpecifies the directional flow of the content.

<!-- The text will flow from left to right -->
<rtc dir="ltr">Semantic Annotations</rtc>
<!-- The text will flow from right to left -->
<rtc dir="rtl">Semantic Annotations</rtc>
langSpecifies a language code for the content of the element.

<rtc lang="en">Semantic Annotations</rtc>
spellcheckSpecifies an inline style for the element allowing you to apply the style to the contentt.

<!-- Valid values true and false. -->
<!-- Default inherited / browser specific. -->
<rtc spellcheck="true">Semantic Annotations</rtc> 
translateSpecifies an inline style for the element allowing you to apply the style to the content.

<!-- Valid values yes and no. -->
<!-- Default yes. -->
<rtc translate="no">Semantic Annotations</rtc> 
Miscellaneous
contenteditableSpecifies whether the content of the element is editable.

<!-- Valid values true and false. -->
<!-- Default inherited. -->
<rtc contenteditable="true">Semantic Annotations</rtc> 
draggableSpecifies whether the element is draggable.

<!-- Valid values true and false. -->
<!-- Default browser specific. -->
<rtc draggable="true">Semantic Annotations</rtc>
hiddenSpecifies whether the element is not yet, or no longer, relevant.

<!-- Valid values an empty string or hidden -->
<rtc hidden>Semantic Annotations</rtc> 
<rtc hidden="hidden">Semantic Annotations</rtc> 
<rtc> Event Attributes
Attribute Description Example
Document Element
oncopyThe script to be run when the user copies the content of an element.

 <!-- Executes go() function -->
<rtc oncopy="go()">Semantic Annotations</rtc> 
oncutThe script to be run when the user cuts the content of an element.

 <!-- Executes go() function -->
<rtc oncut="go()">Semantic Annotations</rtc>
onpasteThe script to be run when the user pastes some content into an element.

 <!-- Executes go() function -->
<rtc onpaste="go()">Semantic Annotations</rtc>
Drag and Drop
ondragThe script to be run when an element is dragged.

 <!-- Executes go() function -->
<rtc ondrag="go()">Semantic Annotations</rtc>
ondragendThe script to be run when an element has stopped being dragged.

 <!-- Executes go() function -->
<rtc ondragend="go()">Semantic Annotations</rtc>
ondragenterThe script to be run when an element has been dragged to a valid drop target.

 <!-- Executes go() function -->
<rtc ondragenter="go()">Semantic Annotations</rtc>
ondragleaveThe script to be run when an element leaves a valid drop target.

 <!-- Executes go() function -->
<rtc ondragleave="go()">Semantic Annotations</rtc>
ondragoverThe script to be run when an element is being dragged over a valid drop target.

 <!-- Executes go() function -->
<rtc ondragover="go()">Semantic Annotations</rtc>
ondragstartThe script to be run at the start of a drag operation.

 <!-- Executes go() function -->
<rtc ondragstart="go()">Semantic Annotations</rtc>
ondropThe script to be run when a dragged element is being dropped.

 <!-- Executes go() function -->
<rtc ondrop="go()">Semantic Annotations</rtc>
Form
onblurThe script to be run when the element loses focus.

 <!-- Executes go() function -->
<rtc onblur="go()">Semantic Annotations</rtc>
onchangeThe script to be run when object changed and attempt to leave field.

 <!-- Executes go() function -->
<rtc onchange="go()">Semantic Annotations</rtc>
oncontextmenuThe script to be run when a context menu is triggered.

 <!-- Executes go() function -->
<rtc oncontextmenu="go()">Semantic Annotations</rtc>
onfocusThe script to be run when the element gets focus.

 <!-- Executes go() function -->
<rtc onfocus="go()">Semantic Annotations</rtc>
oninputThe script to be run when an element gets user input.

 <!-- Executes go() function -->
<rtc oninput="go()">Semantic Annotations</rtc>
oninvalidThe script to be run when an element is invalid.

 <!-- Executes go() function -->
<rtc oninvalid="go()">Semantic Annotations</rtc>
onresetThe script to be run when a dragged element is being dropped.

 <!-- Executes go() function -->
<rtc onreset="go()">Semantic Annotations</rtc>
onselectThe script to be run when some or all of the contents of an object are selected.

 <!-- Executes go() function -->
<rtc onselect="go()">Semantic Annotations</rtc>
onsubmitThe script to be run when a form is submitted.

 <!-- Executes go() function -->
<rtc onsubmit="go()">Semantic Annotations</rtc>
Keyboard
onkeydownThe script to be run when an element is in focus and keyboard key is pressed down.

 <!-- Executes go() function -->
<rtc onkeydown="go()">Semantic Annotations</rtc>
onkeypressThe script to be run when an element is in focus and keyboard key is pressed down and released.

 <!-- Executes go() function -->
<rtc onkeypress="go()">Semantic Annotations</rtc>
onkeyupThe script to be run when an element is in focus and keyboard key is released.

 <!-- Executes go() function -->
<rtc onkeyup="go()">Semantic Annotations</rtc>
Media
onabortThe script code to be run on abort.

 <!-- Executes go() function -->
<rtc onabort="go()">Semantic Annotations</rtc>
oncanplayThe script to be run when a file has buffered enough so it is ready to start playing.

 <!-- Executes go() function -->
<rtc oncanplay="go()">Semantic Annotations</rtc>
oncanplaythroughThe script to be run when a file can be played all the way to the end without further need of buffering.

 <!-- Executes go() function -->
<rtc oncanplaythrough="go()">Semantic Annotations</rtc>
oncuechangeThe script to be run when the cue changes when using the track element.

 <!-- Executes go() function -->
<rtc oncuechange="go()">Semantic Annotations</rtc>
ondurationchangeThe script to be run when the length of the media is changed.

 <!-- Executes go() function -->
<rtc ondurationchange="go()">Semantic Annotations</rtc>
onemptiedThe script to be run when a media resource element suddenly becomes empty, usually due to an error.

 <!-- Executes go() function -->
<rtc onemptied="go()">Semantic Annotations</rtc>
onendedThe script to be run when the media has reach the end.

 <!-- Executes go() function -->
<rtc onended="go()">Semantic Annotations</rtc>
onloadeddataThe script to be run when media data is loaded and playback can start.

 <!-- Executes go() function -->
<rtc onloadeddata="go()">Semantic Annotations</rtc>
onloadedmetadataThe script to be run when metadata has been loaded.

 <!-- Executes go() function -->
<rtc onloadedmetadata="go()">Semantic Annotations</rtc>
onloadstartThe script to be run whenthe media resource has started loading.

 <!-- Executes go() function -->
<rtc onloadstart="go()">Semantic Annotations</rtc>
onpauseThe script to be run when the media resource has been paused.

 <!-- Executes go() function -->
<rtc onpause="go()">Semantic Annotations</rtc>
onplayThe script to be run when the media resource starts playback.

 <!-- Executes go() function -->
<rtc onplay="go()">Semantic Annotations</rtc>
onplayingThe script to be run when when playback has already begun.

 <!-- Executes go() function -->
<rtc onplaying="go()">Semantic Annotations</rtc>
onprogressThe script to be run when the browser is fetching the media data.

 <!-- Executes go() function -->
<rtc onprogress="go()">Semantic Annotations</rtc>
onratechangeThe script to be run when the playback rate changes.

 <!-- Executes go() function -->
<rtc onratechange="go()">Semantic Annotations</rtc>
onseekedThe script to be run when the seeking attribute is set to false indicating that seeking has finished.

 <!-- Executes go() function -->
<rtc onseeked="go()">Semantic Annotations</rtc>
onseekingThe script to be run when the seeking attribute is set to true indicating that seeking is currently active.

 <!-- Executes go() function -->
<rtc onseeking="go()">Semantic Annotations</rtc>
onstalledThe script to be run when the browser is unable to continue fetching media data.

 <!-- Executes go() function -->
<rtc onstalled="go()">Semantic Annotations</rtc>
onsuspendThe script to be run when media data has stopped before being completely loaded.

 <!-- Executes go() function -->
<rtc onsuspend="go()">Semantic Annotations</rtc>
ontimeupdateThe script to be run when the media resources current playback position has changed.

 <!-- Executes go() function -->
<rtc ontimeupdate="go()">Semantic Annotations</rtc>
onvolumechangeThe script to be run when the volume has changed or been muted.

 <!-- Executes go() function -->
<rtc onvolumechange="go()">Semantic Annotations</rtc>
onwaitingThe script to be run when the media resource has paused but is expected to resume.

 <!-- Executes go() function -->
<rtc onwaiting="go()">Semantic Annotations</rtc>
Mouse
onclickThe script to be run when when a mouse is clicked on an element.

 <!-- Executes go() function -->
<rtc onclick="go()">Semantic Annotations</rtc>
ondblclickThe script to be run when a mouse is double clicked on an element.

 <!-- Executes go() function -->
<rtc ondblclick="go()">Semantic Annotations</rtc>
onmousedownThe script to be run when he mouse button is pressed down while the cursor is over an element.

 <!-- Executes go() function -->
<rtc onmousedown="go()">Semantic Annotations</rtc>
onmousemoveThe script to be run when the mouse button is moved.

 <!-- Executes go() function -->
<rtc onmousemove="go()">Semantic Annotations</rtc>
onmouseoutThe script to be run when the mouse cursor moves off an element.

 <!-- Executes go() function -->
<rtc onmouseout="go()">Semantic Annotations</rtc>
onmouseoverThe script to be run when the mouse cursor moves over an element.

 <!-- Executes go() function -->
<rtc onmouseover="go()">Semantic Annotations</rtc>
onmouseupThe script to be run when the mouse button is released while the cursor is over the element.

 <!-- Executes go() function -->
<rtc onmouseup="go()">Semantic Annotations</rtc>
onwheelThe script to be run when the mouse wheel rolls up or down over an element.

 <!-- Executes go() function -->
<rtc onwheel="go()">Semantic Annotations</rtc>
Scroll
onscrollThe script code to be run when the scrollbar of an element is being scrolled.

 <!-- Executes go() function -->
<rtc onscroll="go()">Semantic Annotations</rtc> 
Window - NONE

Relevant HTML Tutorials

HTML Basics - Language Tags

S