ua-style-sheet-margin-2.html (431B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical margins on dl and dd elements in the UA style sheet</title> 4 <style> 5 .v-rl { writing-mode: vertical-rl; } 6 .ltr, .rtl, .v-rl { border: 1px solid blue; } 7 </style> 8 <div class=ltr> 9 <dl><dt>term</dt><dd>definition</dd></dl> 10 </div> 11 <div class=rtl dir=rtl> 12 <dl><dt>term</dt><dd>definition</dd></dl> 13 </div> 14 <div class=v-rl> 15 <dl><dt>term</dt><dd>definition</dd></dl> 16 </div>