escapes-000.xht (734B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Escaped Newline in String</title> 5 <link rel="author" title="L. David Baron" href="https://dbaron.org/"/> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters"/> 7 <link rel="match" href="escapes-000-ref.xht"/> 8 <style type="text/css"> 9 10 p.one:before { content: "This "; } 11 p.two:before { content: "Th\ 12 is "; } 13 14 </style> 15 </head> 16 <body> 17 18 <p>The following three paragraphs should look identical:</p> 19 20 <p>This is a test paragraph.</p> 21 <p class="one">is a test paragraph.</p> 22 <p class="two">is a test paragraph.</p> 23 24 </body> 25 </html>