checkbox-appearance-native-vertical-lr-baseline.optional-ref.html (766B)
1 <!DOCTYPE html> 2 <title>Test baseline alignment of checkboxes 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 checkbox should be center-aligned with the label it since text is non-alphabetic.</p> 18 <div style="writing-mode: vertical-lr"> 19 <input type="checkbox" id="checkbox" checked> 20 <label for="checkbox">こんにちわ</label> 21 </div> 22 23 <br> 24 25 <p>The checkbox 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="checkbox" id="checkbox" checked> 28 <label for="checkbox">Baseline</label> 29 </div>