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-006.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: Valid Identifiers (starting with escape) as Classes and IDs</title>
<link rel="match" href="ident-000-ref.xht"/>
<style type="text/css">
.one { color: red; background: white; }
.\6000ident, .one { color: green; }
.two { color: red; background: white; }
#\6000ident, .two { color: green; }
</style>
</head>
<body>
<p class="one">This should be green.</p>
<p class="two">This should be green.</p>
</body>
</html>