block-in-inline-align-last-001.html (664B)
1 <!DOCTYPE html> 2 <meta name="assert" content="Test if `text-align-last` handles block-in-inline correctly"> 3 <link rel="match" href="block-in-inline-align-last-001-ref.html"/> 4 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" /> 5 <link rel='help' href='https://drafts.csswg.org/css-text-3/#text-align-property'> 6 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" /> 7 <style> 8 section { 9 width: 10ch; 10 } 11 .last-right { 12 text-align-last: right; 13 } 14 </style> 15 <body> 16 <section class="last-right"> 17 <span> 18 1234567 1234567 19 <div>1234567 1234567</div> 20 1234567 1234567 21 </span> 22 </section> 23 </body>