HTML CSS examples for HTML Tag:rt
The <rt> element is used within a <ruby> to define the pronunciation of character presented in a ruby annotations.
Placement | Inline |
---|---|
Content | Inline, and text |
Start/End Tag | Start tag: required, End tag: required |
Version | New in HTML5 |
<!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>