block-ruby-001-ref.html (1414B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html lang="ja"> 7 <meta charset="utf-8"> 8 <title>CSS Ruby Reference: basic 'block ruby' layout.</title> 9 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 10 <style> 11 @font-face 12 { 13 font-family: "mplus-1p-regular"; 14 src: url("/fonts/mplus-1p-regular.woff") format("woff"); 15 } 16 17 html 18 { 19 font-family: "mplus-1p-regular"; 20 } 21 22 .b { background: lightblue; } 23 .mbp { 24 margin: 1px 3px 5px 7px; 25 padding: 3px 5px 7px 1px; 26 border-width: 3px 1px 7px 5px; 27 border-style: solid; 28 } 29 .columns { 30 columns: 3 auto; 31 column-rule: 1px; 32 background: lightgrey; 33 height: 2em; 34 } 35 rbc { 36 display: ruby-base-container; 37 unicode-bidi: isolate; 38 } 39 .w { white-space: nowrap; width:2.5em; margin: 1em 0em; } 40 </style> 41 A<div class="b"><ruby>べ<rt>る</rt></ruby></div>B 42 A<div class="mbp b"><ruby>べ<rt>る</rt></ruby></div>B 43 <div class="columns">A<div class="mbp b"><ruby>べ<rt>る</rt> べ<rt>る</rt> べ<rt>る</rt> べ<rt>る</rt> べ<rt>る</rt></ruby></div>B</div> 44 <div style="width:2.5em; border:1px solid;"> 45 <div class="w b"><ruby><rb>一<rb>二<rb>三<rb>四<rb>五<rb>六<rb>七<rb>八</ruby></div> 46 <div class="w b"><ruby><rbc>一</rbc><rbc>二</rbc><rbc>三</rbc><rbc>四</rbc><rbc>五</rbc><rbc>六</rbc><rbc>七</rbc><rbc>八</rbc></ruby></div> 47 </div> 48 </html>