管理界面的头

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
        <style type="text/css">
            *{
                padding: 0;
                margin: 0;
            }
            #header{
                min-width: 760px;
                background-color: #3a8ee6;
                height: 38px;
            }
            #header .logo {
                padding: 10px 10px 0 20px;
                float: left;
            }
            #header ul{
                float: left;
                display: inline-block;
                list-style-type: none;
                line-height: 38px;
            }

            #header ul li{
                list-style-type: none;
                display: inline-block;
            }

            #header a{
                display: inline-block;
                text-decoration: none;
                padding: 0 20px;
                color: whitesmoke;
            }
            #header a:hover{
                background-color: #66b1ff;
                color: #000028;
            }

            #header .headerright{
                float: right;
                display: inline-block;
                line-height: 38px;
                margin-right: 20px;
                font-size: large;
            }
        </style>
    <link rel="stylesheet" href="static/css/font-awesome.css">
    </head>
<body>

<div class="container">

<div id="header">
    <img class="logo" src="static/logo.png"/>
    <ul>
        <li> <a href="test2.html"><i class="fa fa-home"></i>&nbsp;首页</a></li>
        <li><a href="test2.html"><i class="fa fa-superpowers"></i>&nbsp;产品介绍</a></li>
        <li><a href="test2.html"><i class="fa fa-book"></i>&nbsp;奇葩特色</a></li>
        <li><a href="test2.html"><i class="fa fa-link"></i>&nbsp;关于我们</a></li>
    </ul>
    <div class="headerright">
        <a href="test2.html">
            <i class="fa fa-user-circle-o" aria-hidden="true"></i>
        </a>
    </div>
</div>
</div>

</body>
</html>

猜你喜欢

转载自www.cnblogs.com/yasepix/p/10329186.html
今日推荐