-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathcss3-modsel-22.xml
More file actions
25 lines (25 loc) · 1.03 KB
/
css3-modsel-22.xml
File metadata and controls
25 lines (25 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>:lang() pseudo-class</title>
<style type="text/css"><![CDATA[ul > li { background-color : red }
li:lang(en-GB) { background-color : lime }]]></style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
<link rel="author" title="Ian Hickson" href="mailto:[email protected]"/>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
</head>
<body>
<ul>
<li lang="en-GB">This list item should be green because its language is
British English</li>
<li lang="en-GB-wa">This list item should be green because its language
is British English (Wales)</li>
</ul>
<ol>
<li lang="en-US">This list item should NOT be green because its language
is US English</li>
<li lang="fr">This list item should NOT be green because its language is
French</li>
</ol>
</body>
</html>