0

看看这里

在你点击一个瓷砖后,房子精灵应该会附着在这个瓷砖上并完全显示出来。图像需要跨越多个图块但是精灵被相邻的图块覆盖。这是为什么?

.div {
    background: none repeat scroll 0 0 red;
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align:top;
    transition: all 500ms ease-in-out;
    cursor: url(house.png) 1 20, pointer;
}
4

2 回答 2

2

这应该有效:

.div img {
    position : absolute;
}
于 2013-04-04T17:17:42.310 回答
1

这是因为瓷砖的尺寸是 20x20 像素 - 这比你的 PNG 小

于 2013-04-04T17:18:42.870 回答