text-indent-wrap-002.html (1492B)
1 <!DOCTYPE html> 2 3 <html> 4 <head> 5 <title>CSS Test: text-indent test (multiple-lines and text-align: justify)</title> 6 <link rel="author" title="Martin Robinson" href="mrobinson@igalila.com"> 7 <link rel="help" href="https://drafts.csswg.org/css-text-3/#text-indent-property"> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop"> 9 <link ref="help" href="https://drafts.csswg.org/css-text/#text-align-property"> 10 <link rel="match" href="text-indent-wrap-002-ref.html"/> 11 <style type="text/css"> 12 p { 13 text-indent: 100px; 14 text-align: justify; 15 } 16 span { background: yellow } 17 </style> 18 </head> 19 <body> 20 <p><span>This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines. This is a long piece of text that will wrap to multiple lines.</span></p> 21 </body> 22 </html>