五彩导航栏--背景图片盖住背景颜色

<!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>
        a {
            display: inline-block;
            width: 125px;
            height: 58px;
            /* line-height大一点就能字体偏下了 */
            line-height: 45px;
            text-decoration: none;
            color: aliceblue;
            background-color: pink;
            text-align: center;
            background: url(bg1.png) no-repeat;
        }
        
        a:hover {
            background: url(bg2.png) no-repeat;
        }
    </style>
</head>

<body>
    <a href="#" class="bg1">五彩导航栏</a>
    <a href="#">五彩导航栏</a>
    <a href="#">五彩导航栏</a>
    <a href="#">五彩导航栏</a>
</body>

</html>
posted @ 2021-03-23 11:08  ice猫猫3  阅读(132)  评论(0编辑  收藏  举报