关于链接和鼠标移上去的文字颜色问题
首先效果如图。
CSS:
#nav li{
width:70px;
float:left;
position:relative;
z-index:1;
height:38px;
display:table;
margin-right:10px;
}
#nav li a{
color:#d0f6d1;
font-size:12px;
font-weight:bolder;
display: block;
height:38px;
line-height:10px;
vertical-align:middle;
display:table-cell;
font-family:"黑体";
line-height:110%;
}
#nav li a:hover{
background:url(nav_a_bg.png) center no-repeat;
color:#329a07;
}
a.this{
color:#329a07;
background:url(nav_a_bg.png) center no-repeat;
}
HTML就是单纯的li和a了
<li><a href="#" alt="关于链接和鼠标移上去的文字颜色有关问题" />,有高手在的话希望帮忙解答一下。
比如你可以用a.current。