2
 <image x="20" y="20" width="300" height="80" xlink:href="logo.png" />

有没有办法使用像素来定位图像?喜欢 CSS 精灵?

4

1 回答 1

-1

您可以使用 position:absolute 定位它

例如

img {
 position:absolute;
 top:20px;
 left:20px;
}

它将相对于它的父容器定位,该容器具有位置:相对设置。

希望有帮助。

于 2012-08-16T19:16:01.347 回答