热搜:NVER node 开发 php

肯求各路神仙为什么鼠标滑过不变色呀~_html/css_WEB-ITnose

2024-11-28 17:50:01
肯求各路神仙为什么鼠标滑过不变色呀~_html/css_WEB-ITnose

html代码:

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">












  • aaaa

  • bbbb

  • cccc

  • dddd





1111
2222
3333
4444







css代码:

.tab_main{
width:600px;
height:400px;
border:1px solid gray;
}
/*tab标签*/
#ch_tab{


}
.ch_ul_tab{
width:560px;
height:26px;
border-bottom:1px solid gray;
}
.ch_ul_tab li{
width:70px;
height:25px;
float:left;
list-style:none;
margin-left:20px;
text-align:center;
background:green;
border-top:1px solid gray;
border-left:1px solid gray;
border-right:1px solid gray;

}
/*tab标签内容*/
#ch_tab_content{
clear:both;
width:600px;
height:364px;

}
.active{
background:yellow;
border-bottom:1px solid white;
}


回复讨论(解决方案)

我想把TAB标签的绿色变成黄色呀  

在这个样式中:
.ch_ul_tab li{
width:70px;
height:25px;
float:left;
list-style:none;
margin-left:20px;
text-align:center;
background:green;
border-top:1px solid gray;
border-left:1px solid gray;
border-right:1px solid gray;

}
把background:green;去掉, 可以简单的换色(好象就是在上面的样式中加了一句background:yellow;) 但逻辑不对呀!

.ch_ul_tab li.active{
background:yellow;
border-bottom:1px solid white;
}

.ch_ul_tab li.active{
background:yellow;
border-bottom:1px solid white;
}
++
正解.