Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/syntax/ident-007.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: Valid Identifiers (including escape) as Classes and IDs</title>
<link rel="match" href="ident-000-ref.xht"/>
<style type="text/css">
.one { color: red; background: white; }
.iden\6000t\6000, .one { color: green; }
.two { color: red; background: white; }
#iden\6000t\6000, .two { color: green; }
</style>
</head>
<body>
<p class="one">This should be green.</p>
<p class="two">This should be green.</p>
</body>
</html>