您的位置:首页 > Web前端 > CSS

CSS——图片精灵(Image Sprites)

2017-11-27 10:30 155 查看
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/2.css">
</head>
<body>
<p>注册成功</p>
<div class="head">

</div>
</body>
</html>


.head {
width: 40px;
height: 40px;
background: url(../img/passport_icon.png);
background-position: -480px -120px;
}


效果:



参考资源:http://passport.iqiyi.com/pages/secure/password/find_pwd_index.action
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: