gpt4 book ai didi

css - 在标题内容中插入超链接 (CSS) - Wordpress 博客

转载 作者:行者123 更新时间:2023-11-28 08:52:33 25 4
gpt4 key购买 nike

我使用以下方法在 Logo 后插入了文本:

#header:after {
content: "Blah blah blah. Contact us at abc@xyz.com"
}

如何使电子邮件地址成为可点击的链接(以我们为收件人的新电子邮件),最好使用 CSS。

最佳答案

使用 content 属性创建的内容不会被解释为标记,

然而,使用带有伪元素 :after 和属性值 attr()a 元素将产生可点击的链接,因为将创建子元素:

a.example::after
{
content: '[' attr(href) ']';
color:#ff0000;
}

<a class="example" href="http://www.google.com"></a>

关于css - 在标题内容中插入超链接 (CSS) - Wordpress 博客,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27287042/

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