如何在链接后放置图像?

发布于 2024-10-21 15:57:35 字数 444 浏览 3 评论 0原文

我的网页中需要有一个链接,后跟一个问号图像,以便将鼠标悬停在问号图像上时显示工具提示。这是我的代码:

 <p>
  <a class="mainLinks" href="#">Currency Converter</a><a href="#" class="questionIcon">&nbsp;</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 技术交流群。

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

发布评论

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

评论(3

淤浪 2024-10-28 15:57:35

尝试以下代码:

<p>
   <a class="mainLinks" href="#">Currency Converter <img src="../images/static/question2.png" /></a>
</p>

Try the following code:

<p>
   <a class="mainLinks" href="#">Currency Converter <img src="../images/static/question2.png" /></a>
</p>
风向决定发型 2024-10-28 15:57:35

您需要使用之后。此链接可能有帮助:
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

疑心病 2024-10-28 15:57:35

您可以

<p>
    <a class="mainLinks" href="#">Currency Converter</a>
</p>

.mainLinks{
    padding-right:30px;
    background:#fff url(...) no-repeat right top;
    text-decoration:none;
}

http://jsfiddle.net/eMLkS/ 处检查工作示例

You can do this

<p>
    <a class="mainLinks" href="#">Currency Converter</a>
</p>

.mainLinks{
    padding-right:30px;
    background:#fff url(...) no-repeat right top;
    text-decoration:none;
}

Check working example at http://jsfiddle.net/eMLkS/

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