


Introduction to usage examples of using CSS3's ruby-position to fix the phonetic position
Mar 08, 2017 pm 01:20 PMruby-position can customize the phonetic notation position around the text in the style. After the page encoding is set, it can be used to create annotation translation effects between various languages. Let’s take a look at ruby-position fixed phonetic notation using CSS3 Usage examples of position:
ruby-position is used when specifying the position of attention.
Attribute value
1.before The phonetic text will be displayed above the basic text. (Default value)
2.after The phonetic text will be displayed below the basic text.
3.right The phonetic text will be displayed on the right side of the basic text.
Example 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>
Example picture
The above is the detailed content of Introduction to usage examples of using CSS3's ruby-position to fix the phonetic position. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to achieve wave effect with pure CSS3? (code example)

Use CSS skillfully to realize various strange-shaped buttons (with code)

How to hide elements in css without taking up space

How to implement lace borders in css3

It turns out that text carousel and image carousel can also be realized using pure CSS!

How to enlarge the image by clicking the mouse in css3

Does css3 animation effect have deformation?
