奇异的代码一段.
大家用稍微牛逼点浏览器去测试下这段代码吧.CSS还是很牛逼的.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
#a{width:100px;height:100px;border:1px solid #666;background:#ccc;}
#b{width:100px;height:100px;border:1px solid #333;background:#666;margin:10px}
#a:hover + #b{
background:#eee;
}
</style>
</head>
<body>
<div id="a">aaa</div>
<div id="b">bbbb</div>
</body>
</html>