雪碧图和background属性

2018-10-23  本文已影响0人  f6d8ee519880

雪碧图

background属性

background-color
background-image
background-repeat
background-position
background-attachment

亚马逊

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>亚马逊</title>
    <style type="text/css">
        .box:link{
            display:block;
            width:48px;
            height:27px;
            background-image:url(yamaxun.png);
            background-repeat:no-repeat;
            background-position:0px -338px;
        }
        .box:hover{
            background-position:-49px -338px;
        }
        .box:active{
            background-position:-120px -338px;
        }
    </style>
</head>
<body>
    <a href="#" class="box"></a>
</body>
</html>

上一篇下一篇

猜你喜欢

热点阅读