限制文本下划线

发布于 2024-10-31 13:57:59 字数 508 浏览 5 评论 0原文

我只想为文本添加下划线,同时保留链接的图像部分:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<title>Test</title>

<style type="text/css">
a:hover {text-decoration:none;}
img {border:none; vertical-align:bottom; padding-left:15px}
</style>

<a href="#">Subscribe to feed<img src="http://www.google.com/phone/static/images/feed-icon.gif" alt=""></a>

代码结果在所有主要浏览器中并不相同。

非常感谢您的帮助!

I'd like to have the underline for the text only and at the same keep the image part of the link:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<title>Test</title>

<style type="text/css">
a:hover {text-decoration:none;}
img {border:none; vertical-align:bottom; padding-left:15px}
</style>

<a href="#">Subscribe to feed<img src="http://www.google.com/phone/static/images/feed-icon.gif" alt=""></a>

The code result isn't the same in all major browsers.

Many thanks for any help!

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

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

发布评论

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

评论(2

囍孤女 2024-11-07 13:57:59

试试这个:

现场演示

<style type="text/css">
    a, a:hover span { text-decoration:none; }
    a span { text-decoration: underline; }
    a img {
        border: none;
        vertical-align: bottom;
        padding-left: 15px;
    }
</style>

<a href="#">
    <span>Subscribe to feed</span>
    <img src="http://www.google.com/phone/static/images/feed-icon.gif" alt="">
</a>

Try this:

Live Demo

<style type="text/css">
    a, a:hover span { text-decoration:none; }
    a span { text-decoration: underline; }
    a img {
        border: none;
        vertical-align: bottom;
        padding-left: 15px;
    }
</style>

<a href="#">
    <span>Subscribe to feed</span>
    <img src="http://www.google.com/phone/static/images/feed-icon.gif" alt="">
</a>
鲸落 2024-11-07 13:57:59
a img {
  text-decoration: none;
}
a img {
  text-decoration: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文