<rt> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:rt

Description

The <rt> element is used within a <ruby> to define the pronunciation of character presented in a ruby annotations.

Summary

Placement Inline
Content Inline, and text
Start/End Tag Start tag: required, End tag: required
Version New in HTML5

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head>
  <title>Example of HTML rt Tag</title>
  <style type="text/css">
    ruby{<!--  w  ww.j ava 2s.com-->
        font-size: 36px;
    }
</style>
 </head>
 <body>
  <ruby> aaa <rp>(</rp><rt>ccc</rt><rp>)</rp> eee <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby>
 </body>
</html>

Related Tutorials