作业08

作者: 迷路了吗_67f1 | 来源:发表于2018-11-26 16:49 被阅读0次

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>购物车logo</title>
<style type="text/css">
.box{
display: block;
width: 48px;
height: 38px;
background-image: url("amazon-sprite_.png");
background-repeat: no-repeat;
}
.box:link{
background-image: url("amazon-sprite_.png");
background-position: -11px -340px;
}
.box:hover{
background-image: url("amazon-sprite_.png");
background-position: -58px -339px;
}
.box:active{
background-image: url("amazon-sprite_.png");
background-position: -126px -339px;
}
</style>
</head>
<body>
<a href="#" class="box"></a>
</body>
</html>

相关文章

网友评论

      本文标题:作业08

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