欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css案例--链接导航栏

程序员文章站 2024-02-29 21:38:46
...

实现效果图

 

css案例--链接导航栏

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>链接导航栏</title>
    <style>
        .nav{
            text-align: center;
        }
       div>a{
           display: inline-block;
           text-align: center;
           color: white;
            height: 50px;
            width: 120px;
           line-height: 50px;
           background-color: green;
           background-image: none;
           background-attachment: fixed;
           background-position: 50px 50px;
           text-decoration: none;
        }
        a:hover{
            color: orange;
        }
    </style>
</head>
<body>
<div class="nav">
    <a href="#">网站首页</a>
    <a href="#">网站首页</a>
    <a href="#">网站首页</a>
    <a href="#">网站首页</a>
    <a href="#">网站首页</a>
    <a href="#">网站首页</a>


</div>
</body>
</html>

 

相关标签: Web前段学习笔记