如何选择页面中的最后一个元素?

时间:2013-09-24 16:38:12

标签: css css-selectors

有没有办法选择最后出现的具有css的特定元素?

这是一个例子:DEMO

我试过last-child但这不是我想要的。我用过这堂课:

HTML:

<ul>
    <li><span>test</span></li>
    <li>
        <span>test</span>
        <span>test</span>
    </li>
</ul>
<div>
    <span>test</span>
    <span>test</span>
</div>
<p>
    <span>test</span>
    <span>red</span>
</p>

CSS:

span:last-child{
    color:red;
    font-weight:bold;
}

我希望最后span个“红色”内容为红色。我怎么能用css做到这一点?

更新 对于具有相同父项的元素,存在last-of-type的解决方案。但是不同的父母呢?

1 个答案:

答案 0 :(得分:6)

试试这个:(你应该知道父包装元素

body > *:last-child > span:last-child{
    color: red;
}

Working Fiddle