美文网首页
前端-第七天-作业

前端-第七天-作业

作者: 看三小 | 来源:发表于2018-10-23 16:51 被阅读1次

    亚马逊购物车按钮

    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport"
    content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style type="text/css">
    * {
    padding: 0;
    margin: 0;
    }
    .a1:link{
    width: 47px;
    height: 34px;
    display: block;
    background-image: url(img/亚马逊购物车.png);
    }
    .a1:hover{
    background-image: url(img/亚马逊购物车.png);
    background-position: -47px 0;
    }
    </style>
    </head>
    <body>
    <a href="#" class="a1"></a>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:前端-第七天-作业

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