blob: 9085599b1e3674797ff343762bd0432f9882eb7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<title>adjacent sibling selectors</title>
<style type=text/css>
li, li + li + li { text-decoration: none }
li + li { text-decoration: underline }
</style>
</head>
<body>
<ul>
<li>foo bar</li>
<li>this and only this should be underlined</li>
<li>foo bar</li>
<li>foo bar</li>
<li>foo bar</li>
<li>foo bar</li>
</ul>
</body>
</html>
|