| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| <html> |
| <head> |
| <title>CSS 2.1 Test Suite: Characters and Case: Character Escapes</title> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#q6"> |
| <style type="text/css"> |
| |
| p.one:before { content: "This "; } |
| p.two:before { content: "Th\ |
| is "; } |
| |
| </style> |
| </head> |
| <body> |
| |
| <p>The following three paragraphs should look identical:</p> |
| |
| <p>This is a test paragraph.</p> |
| <p class="one">is a test paragraph.</p> |
| <p class="two">is a test paragraph.</p> |
| |
| </body> |
| </html> |