Chrome Firefox Sprite Sheet图像未显示

xesrikrc  于 2023-08-01  发布在  Go
关注(0)|答案(1)|浏览(79)

我有一个问题,让这个CSS的精灵表工作在谷歌浏览器。

image.emo {
  width: 19px;
  height: 19px;
}

image#smile {
  background: url(img/diceSprite.png) 0 0;
}

image#bigsmile {
  background: url(img/diceSprite.png) -19px 0;
}

个字符

z31licg0

z31licg01#

变化

image.emo {
  width:19px;
  height:19px;
}

字符串

img.emo {
  width:19px;
  height:19px;
}


其他人也有类似的模式元素选择器是img,不是image

相关问题