小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

5.通過定位實現(xiàn)二級菜單

 路人甲Java 2021-11-04

通過定位實現(xiàn)二級菜單:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./reset.css">
    <style>
        .clearfix::after {
            content: "";
            display: block;
            clear: both;
        }

        .header {
            height: 40px;
            background-color: #e3e4e5;
        }

        .header .nav>li{
            float:left;
            margin:0 20px;
            width:150px;
            text-align:center;
            line-height:40px;
            height:40px;
            box-sizing: border-box;
            position:relative;
        }

        .header .nav>li:hover{
            line-height:38px;
            border:1px solid #ccc;
            border-bottom:none;
            background-color: #fff;
        }

        .header .nav>li:hover::after{
            content:"";
            display:block;
            width:100%;
            height:1px;
            background:#fff;
            position: absolute;
            top:38px;
        }

        .header .nav>li:hover .secondnav{
            width:300px;
            border:1px solid #ccc;
            position:absolute;
            right:-1px;
            text-align:left;
            display:block;
        }
        
        .header .nav>li .secondnav{
            display:none;
        }
        
    </style>
</head>

<body>
    <header class="header">
        <ul class="nav clearfix">
            <li><a href="">Lorem.</a></li>
            <li><a href="">Culpa.</a></li>
            <li><a href="">Consequuntur?</a></li>
            <li>
                <a href="">客戶服務(wù)</a>
                <div class="secondnav">
                    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Numquam deleniti voluptate fugit distinctio, totam iure delectus aliquam aspernatur amet hic.
                </div>
            </li>
            <li><a href="">Ex.</a></li>
        </ul>
    </header>
</body>

</html>
index.html

代碼中的reset.css文件,參考下面網(wǎng)站:https://www.cnblogs.com/lanshanxiao/p/12663192.html

 

效果展示:

 

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約