blob: f906bb4531b0c9afbf590bed6ea1cb3bcc13e0bb [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>:lang() pseudo-class</title>
<style type="text/css">ul > li { background-color : red }
li:lang(en-GB) { background-color : lime }</style>
<link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
<link rel="prev" href="css3-modsel-21c.html" title=":target pseudo-class">
<link rel="next" href="css3-modsel-23.html" title=":enabled pseudo-class">
<link rel="last" href="css3-modsel-d4.html" title="Dynamic updating of :first-child and :last-child">
<link rel="up" href="./index.html">
<link rel="top" href="../../index.html">
</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>