其他分享
首页 > 其他分享> > 22222

22222

作者:互联网

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站导航</title>
    <style>
        .nav {
            text-align: center;
        }
        .nav a {
            display: inline-block;
            width: 120px;
            height: 50px;
            line-height: 50px;
            color: #fff;
            text-decoration: none;
            background-image: url(imges/bg.jpg);
        }
        .nav a:hover {
            background-image: url(imges/bgc.jpg);
        }
    </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>

 

标签:网站,text,image,jpg,22222,nav,导航
来源: https://blog.csdn.net/qq_58654946/article/details/121140250