使用CSS3的ruby-position固定注音位置的用法示例
程序员文章站
2022-10-12 12:26:51
ruby-position能在样式上定制文字周围的注音位置,页面编码设置好以后可以用来制作各种语言之间的加注翻译效果,下面我们来看一下使用CSS3的ruby-position固定注音位置的用法示例:... 16-07-05...
ruby-position 指定注意的位置时使用。<设置或检索通过rt对象指定的注释文本或发音指南(参考ruby对象)的位置。>
属性值
1.before 注音文本会在基础文字上面表示。(默认值)
2.after 注音文本会在基础文字下面表示。
3.right 注音文本会在基础文字右面表示。
实例代码
xml/html code复制内容到剪贴板
- <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title> ruby-position </title>
- <style>
- ruby.sample1 {ruby-position:before;}
- ruby.sample2 {ruby-position:after;}
- ruby.sample3 {ruby-position:right;}
- </style>
- </head>
- <body>
- <p><ruby class="sample1">新幹線<rt>しんかんせん</rt></ruby></p>
- <p><ruby class="sample2">新干线<rt>xinganxian</rt></ruby></p>
- <p><ruby class="sample3">高铁<rt>high-speed rail</rt></ruby></p>
- </body>
- </html>
实例图