码迷,mamicode.com
首页 > 其他好文 > 详细

下拉菜单

时间:2017-06-10 23:34:10      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:nbsp   order   line   width   title   max   div   下拉菜单   下拉   

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            * {
                margin: 0px;
                padding: 0px;
            }
            
            #daohanglan {
                height: 35px;
                /*border: 1px solid black;*/
                width: 280px;
                position: relative;
                /*top: 0px;*/
                z-index: 200;
            }
            
            .annv {
                float: left;
                width: 70px;
                max-height: 35px;
                background-color: darkcyan;
                text-align: center;
                line-height: 35px;
                overflow: hidden;
            }
            
            ul {
                list-style: none;
            }
            
            .annv:hover{
                max-height: 300px;
                transition: 1s;
            }
            
            li{
                background-color: darkmagenta;
            }
        </style>
    </head>

    <body>
        <div id="daohanglan">
            <div class="annv">首页</div>
            <div class="annv">PHP
                <ul>
                    <li>1111</li>
                    <li>222222</li>
                    <li>444</li>
                </ul>
            </div>
            <div class="annv">JAVA
                <ul>
                    <li>1111</li>
                    <li>222222</li>
                    <li>333</li>
                    <li>444</li>
                </ul>
            </div>
            <div class="annv">.NET
                <ul>
                    <li>1111</li>
                    <li>222222</li>
                </ul>
            </div>
        </div>
        <div style="position: absolute;z-index: 100;">
            啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦
            啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦
        </div>
    </body>

</html>

 

下拉菜单

标签:nbsp   order   line   width   title   max   div   下拉菜单   下拉   

原文地址:http://www.cnblogs.com/skyhorseyk/p/6979109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!