HTML+CSS做二级导航



    
        
        导航菜单
        
    
    
        
        


            

                
                
            

        

    

nav.css

@charset "utf-8";
*{
    margin: 0px;
    padding: 0px;
}
header{
    height: 65px;
    background-color: #666666;
}
.container{
    margin: 0 auto;
    width: 1180px;
    height: 65px;
    /*background-color: #efefef;*/
}
.nav{height: 65px;
    line-height: 65px;
    text-align: center;
}
.nav>li{
    list-style:none;
    float: left;
    width: 100px;
    margin-right: 2px;
    position: relative;
}
.nav>li>a{
    text-decoration: none;
    color: white;
}
.nav>li:hover{
    background-color: gold;
}
.nav>li:hover>a{
    color: #666666;
}
.nav li .nav-list{
    width: 200px;
    height: 300px;
    background-color: #666666;
    display: none;
}
.nav-list li{
    list-style: none;
    text-align: left;
    padding-left: 10px;
}
.nav>li:hover .nav-list{
    position: absolute;
    left: 0px;
    top: 66px;
    display: block;
}
.nav>li:hover .nav-list li{
    height: 35px;
    line-height: 35px;
    color: white;
    font-weight: bold;
}

你可能感兴趣的:(HTML+CSS做二级导航)