Skip to content

Instantly share code, notes, and snippets.

@fanzeyi
Created October 10, 2011 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fanzeyi/1274868 to your computer and use it in GitHub Desktop.
Save fanzeyi/1274868 to your computer and use it in GitHub Desktop.
aaa
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Just a demo</title>
<style rel="stylesheet">
body {
color:#000;
}
ul.term:hover > li.member {
color:red;
}
ul.term:hover > li.member:hover {
color: #000;
}
</style>
</head>
<body>
<ul class="term">
<li class="member">Hello</li>
<li class="member">World!!</li>
<li class="member">This</li>
<li class="member">a</li>
<li class="member">Demo</li>
<li class="member">Page</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment