HTML CSS examples for HTML Tag:rp
The <rp> element provides fall-back parenthesis for browsers that that don't support 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 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>