<rp> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:rp

Description

The <rp> element provides fall-back parenthesis for browsers that that don't support 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 rp Tag</title>
  <style type="text/css">
    ruby{<!--from w  w  w.  ja  v a 2s  .  co  m-->
        font-size: 36px;
    }
</style>
 </head>
 <body>
  <ruby> test <rp>(</rp><rt>aaaa</rt><rp>)</rp> bbbb <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby>
 </body>
</html>

Related Tutorials