text-align-last-010.html (864B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: text-align-last - right(one line inside block element)</title> 4 <link rel="author" title="Intel" href="http://www.intel.com"> 5 <link rel="author" title="Shiyou Tan" href="mailto:shiyoux.tan@intel.com"> 6 <link rel="help" title="7.2. Last Line Alignment: the 'text-align-last' property" href="http://www.w3.org/TR/css-text-3/#text-align-last"> 7 <link rel="match" href="text-align-last-010-ref.html"> 8 <meta name="assert" content="The 'text-align-last' property set to 'right' on a block element aligns the only one line text to the right."> 9 <style> 10 div { 11 border: 1px solid blue; 12 text-align-last: right; 13 } 14 </style> 15 <body> 16 <p>Test passes if the line of "FillerText" below is aligned to the right, inside the blue box.</p> 17 <div>FillerText FillerText FillerText FillerText FillerText</div> 18 </body>