码迷,mamicode.com
首页 > Web开发 > 详细

Css Study - Top Menu in Header 横向间隔的菜单

时间:2014-08-05 18:41:30      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   使用   os   io   

.shortcut ul li {
  display: inline;
}

 

CSS

bubuko.com,布布扣
 <style>
        ol, ul {
            list-style: none;
        }

        html, body, ul, li, div, form {
            margin: 0px;
            border: 0px;
            padding: 0px;
            font-size: 11px;
            color: #666;
        }

        .header {
            width: 100%;
            height: 100px;
            line-height: 100px;
        }

        .shortcut {
            width: 100%;
            line-height: 30px;
            height: 30px;
            background: #F7F7F7;
            border-bottom: 1px solid #eee;
        }

            .shortcut ul li {
                display: inline;
            }

            .shortcut .fl {
                left: 50px;
                position: absolute;
            }

        a {
            text-decoration: none;
            color: #666;
        }

            a:hover {
                color: #E4393C;
                text-decoration: underline;
            }

        .fav {
            top: 8px;
            left: 0;
            width: 13px;
            height: 13px;
            background: url(http://misc.360buyimg.com/lib/skin/2013/i/20130725.png) no-repeat 0 0;
            cursor: pointer;
            position: absolute;
            overflow: hidden;
        }

        .add_home {
            top: 8px;
            left: 78px;
            width: 13px;
            height: 13px;
            background: url(http://misc.360buyimg.com/lib/skin/2013/i/20130725.png) no-repeat 0 0;
            cursor: pointer;
            position: absolute;
            overflow: hidden;
        }

        .fl ul li a {
            margin-left: 20px;
        }

        .shortcut .fr {
            width: 500px;
            float: right;
            right: 20px;
            position: absolute;
        }
    </style>
View Code

 

Header

bubuko.com,布布扣
<div class="header">
            <div class="shortcut">
                <div class="fl">
                    <ul>
                        <li><b class="fav"></b><a href="javascript:addToFavorite()" rel="nofollow">收藏我们</a></li>
                        <li><b class="add_home"></b><a href="javascript:addToFavorite()" rel="nofollow">加为首页</a></li>
                    </ul>
                </div>
                <div class="fr">
                    <ul>
                        <li>
                            <span style="color: #e3840a; font-weight: bold">Willa</span>
                            您好,欢迎使用My System!  <%=DateTime.Now.ToString("yyyy-MM-dd hh:mm")%></li>
                        <li><a>[退出]</a></li>
                        <li>|</li>
                        <li><a>On Duty</a></li>
                        <li>|</li>
                        <li><a>Off Duty</a></li>
                    </ul>
                </div>
            </div>
        </div>
View Code

 

Css Study - Top Menu in Header 横向间隔的菜单,布布扣,bubuko.com

Css Study - Top Menu in Header 横向间隔的菜单

标签:style   blog   http   color   java   使用   os   io   

原文地址:http://www.cnblogs.com/rebecca-ty/p/3892612.html

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