下拉菜單

下拉菜單簡版

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            .top{
                width: 100px;
            }

            .btn{
                width: 100px;
                height: 50px;
                text-align: center;
                line-height: 50px;
                background: #00FA9A;
                color: white;
            }

            .xl{
                height: 200px;
                width: 100px;
                display: none;
                background: #CCCCFF;
            }

            .btn:hover{
                background: #008000;
                cursor: pointer;
            }

            .top:hover .xl{
                display: block;

            }

            .top:hover .btn{
                background: #008000;
            }

            a{
                display: block;
                text-decoration: none;
                height: 40px;
                text-align: center;
                line-height: 40px;
                color:black;
            }

            a:hover{
                background: #6699ff;
                color: white;
            }
        </style>
    </head>
    <body>

        <div class="top">

            <div class="btn">
                下來菜單
            </div>

            <div class="xl">
                <a href="">鏈接</a>
                <a href="">鏈接</a>
                <a href="">鏈接</a>
                <a href="">鏈接</a>
            </div>

        </div>


    </body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章