1127679-1a-inline-flex-relpos.html (411B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <style> 6 div { 7 border: 1px solid blue; 8 padding: 5px; 9 } 10 span { 11 margin: 0 15px; 12 border: 1px solid green; 13 position: relative; 14 top: 5px; 15 left: 10px; 16 } 17 </style> 18 <body> 19 <!-- the dir attributes on the spans here should not affect their positioning --> 20 <div style="display: inline-flex;"><span dir=rtl>foo</span><span dir=ltr>bar</span> 21 </body> 22 </html>