tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ruby-inlinize-blocks-001-ref.html (705B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>CSS Reference: Inlinize block-level boxes inside ruby</title>
      6  <link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
      7  <link rel="stylesheet" href="support/ruby-common.css">
      8  <style>
      9    .inline {
     10      display: inline-block;
     11      background-color: yellow;
     12      width: 30px; height: 30px;
     13    }
     14  </style>
     15 </head>
     16 <body>
     17  <div><ruby>a<div class="inline">b</div>c</ruby></div>
     18  <div><rb>a<div class="inline">b</div>c</rb></div>
     19  <div><rt>a<div class="inline">b</div>c</rt></div>
     20  <div><rbc>a<div class="inline">b</div>c</rbc></div>
     21  <div><rtc>a<div class="inline">b</div>c</rtc></div>
     22 </body>
     23 </html>