text-align-match-parent-root-logical.html (862B)
1 <!DOCTYPE html> 2 <html dir="rtl"> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Text: text-align: match-parent on root, ignoring body propagation</title> 6 <link rel="author" title="Simon Montagu" href="mailto:smontagu@mozilla.com"> 7 <link rel="author" title="Florian RIvoal" href="https://florian.rivoal.net"> 8 <link rel="help" href="http://www.w3.org/TR/css-text-3/#text-align-property"> 9 <meta name="assert" content="Text checks that 10 text-align: match-parent on a root element with dir=ltr is 11 equivalent to text-align: start (not a physical left or right), 12 inheriting as a logical value"> 13 <link rel="match" href="text-align-match-parent-root-ltr-ref.html"> 14 <style type="text/css"> 15 html { text-align: match-parent; } 16 </style> 17 </head> 18 <body dir=ltr> 19 <p>This line should be aligned left</p> 20 </body> 21 </html>