热搜:NVER node 开发 php

css sprite 调整大张图片中小图标的大小_html/css_WEB-ITnose

2024-11-23 21:30:02
css sprite 调整大张图片中小图标的大小_html/css_WEB-ITnose

直接说解决方法:


假设一张拼合好的大图大小是:900 x 1000 px (如上图)

现在想取图中左上角的河马图标,并缩小图标的大小。

正常取图:

.sprite {	background: url('imgs/woqu_localjoin_all.png') no-repeat -21px -80px;	width: 190px;height: 154px;}

现在取正常图标大小的一半:

.sprite {	background: url('all.png') no-repeat -10px -40px;width: 95px;height: 74px;background-size:450px 500px;}



OK,大功告成!