gpt4 book ai didi

html - 我得到两个链接标题

转载 作者:太空宇宙 更新时间:2023-11-03 19:50:01 25 4
gpt4 key购买 nike

我对链接标题有疑问。我试图用 css 设计链接标题的样式。我的 CSS 是:

a[title]:hover:after {
content: attr(title);
padding: 2px 8px;
position: absolute;
left: 0;
top: 100%;
white-space: nowrap;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border:1px solid #bce8f1;
background-color:#d9edf7;
color:#31708f;
font-weight:700;
box-shadow: 0 0 6px #bce8f1;
z-index:99999999;
}

但是当我将鼠标悬停在链接上时,我得到了这个样式的标题,但我也得到了照片上的旧标题。

enter image description here

有什么想法吗?

谢谢

最佳答案

我不使用具有默认操作/样式的 title 属性,而是创建自己的。

<a href="/someplace.html" data-title="The Title of Someplace">Someplace</a>

然后您将更改 CSS 以反射(reflect)新属性。

a[data-title]:hover:after {
content: attr(data-title);
...
}

关于html - 我得到两个链接标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34463149/

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