秒杀按钮的制作

秒杀按钮的制作:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>test</title>

    <style>
        /*外部容器*/
        .contant{
            background:url("public/img/底纹.png");
            width: 362px;
            height: 489px;
            position: relative;
        }

        /*内部容器*/
        .d{
            width: 180px;
            height: 180px;
            font-size:90px;
            color: #fff;
            position: absolute;
            margin:50%;
            left:-90px;
            top:-90px;
        }
        /*a标签*/
        a{
            text-decoration:none;
            color: #fff;
        }
        /*a标签hover后*/
        a:hover{
            text-decoration: underline;
        }
    </style>
</head>
<body>
<div class="contant">
    <div class="d"><a href="">秒杀</a><a href="">包邮</a></div>
</div>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/byte_dance/article/details/79809860
今日推荐