ident-011.xht (747B)
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: Valid Identifiers (including escapes) as Classes and IDs</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="ident-000-ref.xht"/> 8 <style type="text/css"> 9 10 .one { color: red; background: white; } 11 .ide\n\t, .one { color: green; } 12 13 .two { color: red; background: white; } 14 #ide\n\t, .two { color: green; } 15 16 </style> 17 </head> 18 <body> 19 20 <p class="one">This should be green.</p> 21 <p class="two">This should be green.</p> 22 23 </body> 24 </html>