首页 > 技术文章 > 小练习(2)

Jxliu 2018-04-03 15:00 原文

*{
                margin: 0px;
                padding: 0px;
            }
            ul{
                list-style: none;
                }
            li{
                width: 100px;
                height: 49px;
                float: left;
                border-top: 1px solid transparent;
                
                }
                #cc{
                    width: 500px;
                    height: 50px;
                    border: 1px solid gray;
                    text-align: center;/*水平居中*/
                    line-height: 50px;/*垂直居中*/
                }
                li:hover{
                    
                    background-color: gray;
                    color: white;
                    border-top: 1px solid red;
                    cursor: pointer;
                    
                }

 

推荐阅读