背景图像放置
我有一个跨度标签,我正在向其中添加背景图像。我知道有很多方法可以做到这一点,但想知道是否有一种方法可以使背景图像(一个小的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
left
更改为right
怎么样?How about changing
left
toright
?有两种方法可以定位背景图像。
按左/右属性
查看演示: http://jsfiddle.net/rathoreahsan/sDajV/5/< /a>
或
按百分比属性
请参阅演示:http://jsfiddle.net/rathoreahsan/sDajV/4/
There are two ways by which you can position the background image.
by left/right attributes
See the Demo: http://jsfiddle.net/rathoreahsan/sDajV/5/
or
by percentage attributes
See the Demo: http://jsfiddle.net/rathoreahsan/sDajV/4/