20

多亏了 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 .&nbsp;&nbsp;&#124;&nbsp;
            <span="address">Website Information</span> &mdash; <a href="mailto:info@info.eu">info@info.eu</a>
        </span>
</div>



</body>
</html>
4

2 回答 2

29

嗨,实际上您已经评论了您的电子邮件链接 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>

基本上你必须从 . 关于上课。

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

于 2012-05-17T08:59:24.687 回答
2

我认为.about优先a。参看。Css 规则特异性

基本上,一个 css 规则集被分配一个优先级,如版本号,如下所示:

{#id}.{#class}.{#element}.{order}

  • {#id} : id 选择器的数量
  • {#class} :类、伪类、属性的数量
  • {#element} : 元素数量,伪元素
  • {order} :此规则在所有文件中的索引

所以,我们有以下顺序:

  1. 0.2.1.* .about a[href^="mailto:"] (0 id, 1 class + 1 attr, 1 element)
  2. 0.1.1.a span.about (0 id,1 类,1 元素)
  3. 0.1.1.b a[href^="mailto:"] (0 id, 1 attr, 1 元素)
  4. 0.1.0.* .about (0 id,1 类,0 元素)

span.about并且a[href^="mailto:"]具有相同的特殊性(1个类或属性和1个元素),所以顺序很重要,最后一个获胜。

如果你删除了,span那么规则就不那么具体和松散了。

(另外,区分直接应用于元素的规则和其他从父元素继承的规则......)

于 2017-02-23T13:19:03.563 回答