如何在链接后放置图像?
我的网页中需要有一个链接,后跟一个问号图像,以便将鼠标悬停在问号图像上时显示工具提示。这是我的代码:
<p>
<a class="mainLinks" href="#">Currency Converter</a><a href="#" class="questionIcon"> </a>
</p>
相应的CSS是:
.costSummaryBox .questionIcon{
background:url(../images/static/question2.png) no-repeat;
text-decoration:none;
}
但在我的网页中,我得到了链接下方的图像。如何让它们出现在同一行?
I need to have a link in my webpage followed by a question mark image, so that a mouse over on the question mark image, shows a tool tip. This is the code I have:
<p>
<a class="mainLinks" href="#">Currency Converter</a><a href="#" class="questionIcon"> </a>
</p>
and the corresponding css is:
.costSummaryBox .questionIcon{
background:url(../images/static/question2.png) no-repeat;
text-decoration:none;
}
But in my webpage, I get the image below the link. How do I make them appear in the same line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试以下代码:
Try the following code:
您需要使用之后。此链接可能有帮助:
http://www.w3schools.com/css/sel_after.asp
You need to use AFTER. This link might help:
http://www.w3schools.com/css/sel_after.asp
您可以
在 http://jsfiddle.net/eMLkS/ 处检查工作示例
You can do this
Check working example at http://jsfiddle.net/eMLkS/