ua-style-sheet-margin-6-ref.html (547B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical margins on listing 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 .ltr listing { margin: 1em 0; } 8 .rtl listing { margin: 1em 0; } 9 .v-rl listing { margin: 0 1em; } 10 </style> 11 <div class=ltr> 12 <listing>Listing line 1 13 Listing line 2</listing> 14 </div> 15 <div class=rtl dir=rtl> 16 <listing>Listing line 1 17 Listing line 2</listing> 18 </div> 19 <div class=v-rl> 20 <listing>Listing line 1 21 Listing line 2</listing> 22 </div>