This question already has answers here:
Can CSS detect the number of children an element has?
                                
                                    (7个答案)
                                
                        
                                3年前关闭。
            
                    
我已经看过这个SO post了。

我试图在只有2个ul的情况下定位最后一个UL,这意味着如果有第三个ul它将不适用。

我试过了:

ul:last-child:nth-last-child(2){


HTML:

<ul>
    ....
</ul>
 <ul>
    ....
</ul>


但是,没有运气,我哪里错了?

最佳答案

最后一个和第二个孩子结合使用:

ul:last-child:nth-child(2) { ... }

关于css - 有两个UL时,CSS以最后一个UL为目标,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39491803/

10-10 21:57