nth-last-child()和nth-last-of-type()的用法和區別

終於搞明白nth-last-child()和nth-last-of-type()的區別了:css

<!DOCTYPE html>
<html>
<head>
    <title>css3</title>
    <style type="text/css">
        /*p的父元素下的p元素 且 p元素是倒數第二個子元素*/
        p:nth-last-child(2){
            background-color: red;
        }
        /*p的父元素下的倒數第二個p元素*/
        p:nth-last-of-type(2){
            background-color: blue;
        }
    </style>
</head>
<body>
    <div>
        <p>1</p>
        <p>2</p>
        <p>3</p>
        <p>4</p>
        <span>5</span>
    </div>
</body>
</html>

clipboard.png

細細品味,nth-last-child()和nth-last-of-type()仍是有child和type的區別的。
如果改變了span和最後一個p的位置,就會發現p:nth-last-child()不起做用了,由於div的倒數第二個元素不是p。html

clipboard.png

相關文章
相關標籤/搜索