text-align-last-014.html (835B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: text-align-last applied to "display: block" span 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 <meta name="assert" content="Test checks that the 'text-align-last' property is valid if the span element set 'display: block'."> 8 <style> 9 span { 10 border: 1px solid blue; 11 display: block; 12 text-align-last: center; 13 width: 200px; 14 } 15 </style> 16 <body> 17 <p>Test passes if the last line of "FillerText" below is centered inside the blue box.</p> 18 <span>FillerText FillerText FillerText FillerText FillerText</span> 19 </body>