背景图像放置

发布于 2024-11-24 22:51:19 字数 363 浏览 1 评论 0原文

我有一个跨度标签,我正在向其中添加背景图像。我知道有很多方法可以做到这一点,但想知道是否有一种方法可以使背景图像(一个小的 pdf 图标)移动到文本的右侧而不是左侧。

<span class='pdf'><a href="#">download pdf link</a></span>

 .pdf{
  background: url(img/sprite.png) no-repeat left bottom;
  display:inline-block;
  padding-top:10px;
  padding-left:26px;

精灵图像中还有一些精灵,这个精灵被设置为位于底部。

I have a span tag that I'm adding a background image to. I know there are many ways of doing this but wondered if there is a way to make the background image which is a small pdf icon move to the right of the text instead of the left of it.

<span class='pdf'><a href="#">download pdf link</a></span>

 .pdf{
  background: url(img/sprite.png) no-repeat left bottom;
  display:inline-block;
  padding-top:10px;
  padding-left:26px;

There are a few more sprites in the sprite image and this one is set to be position to the bottom.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恬淡成诗 2024-12-01 22:51:19

left 更改为 right 怎么样?

background: url(img/sprite.png) no-repeat right bottom;
padding-right:26px;

How about changing left to right?

background: url(img/sprite.png) no-repeat right bottom;
padding-right:26px;
红ご颜醉 2024-12-01 22:51:19

有两种方法可以定位背景图像。

按左/右属性

  For example:
  background: url(img/sprite.png) no-repeat right bottom;
  // "right" instead of "left"

查看演示: http://jsfiddle.net/rathoreahsan/sDajV/5/< /a>

按百分比属性

  For example:
  background: url(img/sprite.png) no-repeat 188% 93%;

请参阅演示:http://jsfiddle.net/rathoreahsan/sDajV/4/

There are two ways by which you can position the background image.

by left/right attributes

  For example:
  background: url(img/sprite.png) no-repeat right bottom;
  // "right" instead of "left"

See the Demo: http://jsfiddle.net/rathoreahsan/sDajV/5/

or

by percentage attributes

  For example:
  background: url(img/sprite.png) no-repeat 188% 93%;

See the Demo: http://jsfiddle.net/rathoreahsan/sDajV/4/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文