radio-appearance-native-vertical-lr-baseline.optional-ref.html (759B)
1 <!DOCTYPE html> 2 <title>Test baseline alignment of radio buttons in vertical-lr writing mode.</title> 3 <meta charset="utf-8"> 4 <style> 5 6 label { 7 color: red; 8 background-color: red; 9 margin-top: -30px; 10 } 11 12 input { 13 visibility: hidden; 14 } 15 16 </style> 17 <p>The radio button should be center-aligned with the label text since it is non-alphabetic.</p> 18 <div style="writing-mode: vertical-lr"> 19 <input type="radio" id="radio" checked> 20 <label for="radio">こんにちわ</label> 21 </div> 22 23 <br> 24 25 <p>The radio button should be left-aligned with the label text since it has text-orientation sideways.</p> 26 <div style="writing-mode: vertical-lr; text-orientation: sideways;"> 27 <input type="radio" id="radio" checked> 28 <label for="radio">Baseline</label> 29 </div>