gpt4 book ai didi

html - 悬停时的 IE8 anchor 文本阴影

转载 作者:太空宇宙 更新时间:2023-11-04 00:19:02 27 4
gpt4 key购买 nike

我在 ASP.NET 中,但问题完全与 HTML 相关。我有以下代码:

<asp:Panel runat="server" CssClass="message-box">
<asp:LinkButton ID="LogoutLinkButton" runat="server">Logout</asp:LinkButton>
</asp:Panel>

等效的 HTML 是:

<div class="message-box">
<a href="#">Logout</a>
</div>

CSS 类是:

a {
text-decoration: none;
color: inherit;
}

.message-box {
width: 1000px;
margin: 0 auto;
text-align: right;
}

.message-box a:hover {
text-decoration: underline;
text-shadow: 0.1em 0.1em 0.2em black;
}

演示可以在jsFiddle中找到.

anchor 文本的文本阴影在 IE8/IE9 中不起作用。我怎样才能做到这一点?

谢谢。

最佳答案

text-shadow 是一个 css3 属性。所以你不能在 IE 中使用它。但是你可以使用 filter:shadow 来满足你的要求

关于html - 悬停时的 IE8 anchor 文本阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10061663/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com