鼠标激活显示背景色,我们该如何编写这样的代码呢?我们来整理一下思路:把a里的部分设置成一个块元素,然后定义鼠标放上后的样式。CSS1中:hover只对a元素起作用,CSS2中:hover应用于所有元素.而IE7也没同样没有支持CSS2中的这个标准。所以为了适应所有浏览器还是要定义在a中。
我们看最终的效果:
我们看下面的xhtml代码:
Example Source Code
[www.21shipin.com]<div id=\"links\">
<ul>
<li><a href=\"#\" title=\"CSS Web Design\">CSS Web Design<em>xhtml css div css - 21shipin.com</em> <span>www.21shipin.com</span></a></li>
<li><a href=\"#\" title=\"CSS Web Design\">CSS Web Design<em>xhtml css div css - 21shipin.com</em> <span>www.21shipin.com</span></a></li>
</ul>
</div>
我们对上面的xhtml编写css代码:
Example Source Code
[www.21shipin.com]#links ul {
list-style-type: none;
width: 280px;
}
#links li {
border: 1px dotted #06f;
border-width: 1px 0;
margin-bottom: 16px;
}
#links li a {
color: #00f;
display: block;
font: bold 120% Arial, Helvetica, sans-serif;
padding: 8px;
text-decoration: none;
}
* html #links li a { /* make hover effect work in IE */
width: 280px;
}
#links li a:hover {
background: #f0f0f0; color:#036;
}
#links a em {
color: #666;
display: block;
font: normal 85% Verdana, Helvetica, sans-serif;
line-height: 125%;
}
#links a span {
color: #999;
font: normal 70% Verdana, Helvetica, sans-serif;
line-height: 150%;
}
我们看最终的运行效果:
Source Code to Run
[www.21shipin.com]