'ruby-align' Example : ruby align « CSS « HTML / CSS






'ruby-align' Example

    
<html>
<body>
<p>
Click in the following div element to change the ruby alignment to the left.
</p>
<div style="background-color:#EEEEEE; 
            width:200; 
            cursor:hand" 
     onclick="myRuby.style.rubyAlign='left'">
<ruby id="myRuby" style="ruby-align:right">
    <span style="font-family:Verdana; font-size:16pt">
    base text
    </span>
    <rt>
    <span style="font-family:Times New Roman; font-size: 14pt; color:red">
    ruby text
    </span>
</ruby>
</div>
</body>
</HTML>

    
      
      








Related examples in the same category