美文网首页
css_4 链接点击 -新浪案例

css_4 链接点击 -新浪案例

作者: basicGeek | 来源:发表于2018-11-16 15:55 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        .nav{
            height: 40px;
            background: #eee;
            border-top:3px solid orange;
            border-bottom: 1px solid #aaa;
        }
        .nav-con{
            width: 1000px;
            height: 40px;
            margin: 0 auto;
            background: #1c7430;
        }
        a{
            font: 12px/40px 微软雅黑;
            line-height: 40px;
            color: #333;
            display: inline-block;
            height: 40px;
            text-decoration: none;
            padding:0 12px;
        }
        a:hover{
            background: #999;
        }
    </style>
</head>
<body>
    <div class="nav">
        <div class="nav-con">
            <a href="#">设为首页</a>
            <a href="#">手机新浪网</a>
            <a href="#">移动客户端</a>
        </div>
    </div>
</body>
</html>
image.png

相关文章

网友评论

      本文标题:css_4 链接点击 -新浪案例

      本文链接:https://www.haomeiwen.com/subject/zrmmfqtx.html