gpt4 book ai didi

css - 使用 CSS 设计电子邮件链接/href ="mailto:"

转载 作者:技术小花猫 更新时间:2023-10-29 10:27:48 25 4
gpt4 key购买 nike

感谢 StackOverflow,我终于找到了一种方法来设置我的电子邮件链接的样式,但我想知道为什么如果没有我在此处找到的解决方案,它就无法工作。

由于链接是具有属性类“about”的跨度的一部分,它定义了字体大小和样式,电子邮件链接不应该以 11 像素和无衬线字体显示吗?

同时

a[href^="mailto:"]

{
font-family: sans-serif;
color: black;
font-size: 11px;
}

效果很好,一旦我尝试将其更改为

.about a[href^="mailto:"]

{
font-family: sans-serif;
color: black;
font-size: 11px;
}

它也没有像预期的那样工作。

标签不监听跨度格式或类嵌套吗?

    <!DOCTYPE html>
<html>
<head>
<style type="text/css">

html {
height:100%;
}

body {
height: 100%;
margin-left: 20px;
margin-top:0px;
}

.bottom-left {

position: absolute;
font:sans-serif;
bottom: 15px;
left: 15px;
}


.bold {
font-family: serif;
}


.about {
font-size: 11px;
font-family: sans-serif;
}


/*a[href^="mailto:"]

{
font-family: sans-serif;
color: black;
font-size: 11px;
}*/



.address {
font-size: 11px;
border-bottom: 1px grey dotted;
}




</style>

<title>TEMP</title>

</head>
<body>


<div class="bottom-left">
<span class="about">
<span class="bold">XYZ</span> is a project space .&nbsp;&nbsp;&#124;&nbsp;
<span="address">Website Information</span> &mdash; <a href="mailto:info@info.eu">info@info.eu</a>
</span>
</div>



</body>
</html>

最佳答案

您好,实际上您已经评论了您的电子邮件链接 css:-

所以现在像这种方法一样编写 css,它工作正常......

a[href^="mailto:"]
{
font-family: sans-serif;
color: red;
font-size: 11px;
}

查看演示:- http://jsbin.com/ijofoq/edit#html,live

已更新

现在它工作正常...编辑您的 HTML 并添加到您的 HTML

<div class="bottom-left">
<div class="about">
<span class="bold">XYZ</span> is a project space .&nbsp;&nbsp;&#124;&nbsp;
<span="address">Website Information</span> &mdash; <a href="mailto:info@info.eu">info@info.eu</a>
</div>

基本上,您必须从 .about 类中删除 span 标签。

检查这个:- http://jsbin.com/ijofoq/2/edit

关于css - 使用 CSS 设计电子邮件链接/href ="mailto:",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10632468/

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