zoukankan      html  css  js  c++  java
  • CSS学习之创建一个简单的导航栏

    note_top.html

    虽然是做后端的,但是对CSS很感兴趣,做了个简单的导航栏,很简单的说。希望以后能够做复杂一些,要多努力!
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
        <head>
            <title>note_top.html</title>
    
            <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
            <meta http-equiv="description" content="this is my page">
            <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
            <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
            <style type="text/css">
    .top-ul {
        z-index: 1000;
        position: absolute;
        top: 0px;
        background: #333;
        width: 100%;
        left: 0px;
    }
    
    .top-ul #top-left-ul {
        width: 80%;
        float: left;
    }
    
    .top-ul #top-right-ul {
        width: 20%;
        float: right;
    }
    
    .top-ul #top-right-ul ul {
        right: 0px;
        position: absolute;
    }
    
    .top-ul ul {
        font-family: "微软雅黑", "宋体", Arial;
        margin-top: 0px;
    }
    
    .top-ul #top-left-ul ul {
        direction: rtl;
    }
    
    .top-ul #top-right-ul ul {
        direction: ltr;
    }
    
    .top-ul ul li {
        float: left;
    }
    
    .top-ul ul li a {
        display: block;
        height: 26px;
        padding: 6px 10px 0 10px;
        text-decoration: none;
        color: #ddd;
    }
    
    .top-ul ul li a:hover {
        background: #5EB2E5;
        color: #FFFFFF;
    }
    
    .top-ul  ul li .current_page_item {
        background: #FFFFFF;
        color: #6E7073;
    }
    
    .top-ul ul li .current_page_item:hover {
        background: #FF8800;
        color: #FFFFFF;
    }
    </style>
        </head>
    
        <body>
            <div class="top-ul">
                <div id="top-left-ul">
                    <ul>
                        <li>
                            <a href="">首页</a>
                        </li>
                        <li>
                            <a href="" class="current_page_item">首页</a>
                        </li>
                        <li>
                            <a href="">首页</a>
                        </li>
                        <li>
                            <a href="">首页</a>
                        </li>
                        <li>
                            <a href="">首页</a>
                        </li>
                    </ul>
                </div>
    
                <div id="top-right-ul">
                    <ul>
                        <li>
                            <a href="">登录</a>
                        </li>
                        <li>
                            <a href="">注册</a>
                        </li>
                    </ul>
                </div>
            </div>
        </body>
    </html>

    嗯,预览的跟自己浏览器上的不一样啊

  • 相关阅读:
    php之异常处理
    php7之严格模式RFC
    获取真实ip三个方法
    php网站速度性能优化(转)
    PHPweb应用攻击总结(转)
    PHP安全之Web攻击(转)
    php获取真实ip地址(转)
    单表查询
    表与表之间的关系
    表的操作
  • 原文地址:https://www.cnblogs.com/tatame/p/2655548.html
Copyright © 2011-2022 走看看