多亏了 StackOverflow,我终于找到了一种设置电子邮件链接样式的方法,但我想知道为什么如果没有我在这里找到的解决方案它就不起作用。
由于链接是属性类“about”的跨度的一部分,它定义了字体大小和样式,电子邮件链接不应该以 11px 和无衬线显示吗?
而同时
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 . |
<span="address">Website Information</span> — <a href="mailto:info@info.eu">info@info.eu</a>
</span>
</div>
</body>
</html>