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>