美文网首页
css_1 背景图片设置

css_1 背景图片设置

作者: basicGeek | 来源:发表于2018-11-16 13:50 被阅读0次

使用background 处理登录和购物车

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        a{
            display: inline-block;
            width: 67px;
            height: 32px;
            background:url("110.png");
        }
        a:hover{
            background: url("110.png") bottom;
        }
    </style>
</head>
<body>
    <a href="#"></a>
</body>
</html>
110.png

相关文章

网友评论

      本文标题:css_1 背景图片设置

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