html和css写去哪儿导航条

目录

1、css代码

2、html代码

3、效果图


1、css代码

    * {
            padding: 0;
            margin: 0;
            list-style: none;
            text-decoration: none;
        }

        .nav {
            height: 50px;
            background-color: rgb(36, 210, 188);
            margin-top: 50px;
            padding-left: 20px;
        }

        li {
            float: left;
            width: 75px;
            line-height: 50px;
            text-align: center;
        }

        a:hover {
            background-color: rgb(0, 188, 212);
           

        }

        a {
            display: block;
            width: 100%;
            height: 100%;
            color: white;
        }

        .list {
            width: 200px;
            height: 40px;
            /* background-color: blueviolet; */
            display: none;
            border: 1px solid rgb(0, 188, 212);

        }

        .list>li {
            float: left;
            margin-right: 25px;
        }

        a:hover~ul {
            display: block;
        }

2、html代码


    

3、效果图

html和css写去哪儿导航条_第1张图片

你可能感兴趣的:(css,html,css,前端)