二级菜单制作_html/css_WEB-ITnose
程序员文章站
2022-05-27 12:45:57
...
#tabMenu
{
width:150px;
}
#tabMenu a
{
width:150px;
display:block;
height:30px;
line-height:30px;
text-align:center;
background-color:#CCC;
color:black;
text-decoration:none;
border:solid 1px;
}
#tabMenu a:hover
{
color:#FFF;
background-color:red;
}
#tabMenu div
{
position:absolute;
z-index:10;/*把后面的层隐藏了*/
display:none;
}
function showmenu(num)
{
document.getElementById("menu"+num).style.display="block";
}
function hidemenu()
{
document.getElementById("menu"+num).style.display="none";
}
编程语言 | WEB开发 | 产品中心 |