<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>购物车logo</title>
<style type="text/css">
.btn{
display: block;
width: 41px;
height: 28px;
background-image: url("../css/amazon-sprite_.png");
background-repeat: no-repeat;
}
.btn:link{
background-image: url("../css/amazon-sprite_.png");
background-position: -10px -340px
}
.btn:hover{
background-image: url("../css/amazon-sprite_.png");
background-position: -58px -339px;
}
.btn:active{
background-image: url("../css/amazon-sprite_.png");
background-position: -126px -339px;
}
</style>
</head>
<body>
<a href="#" class="btn"></a>
</body>
运行结果
正常链接(link)
滑过的(hover)
13552928-10d0941dee6c2a86.jpg点击的(active)
13552928-8890f9c2d979f022.jpg
网友评论