Non so se c'è un selettore CSS può fare lo stesso come la linea di seguito (codice jQuery):Esiste un selettore CSS standard simile a: eq() in jQuery?
.tab_cadre_central .top:eq(0) table tbody tr td table tbody tr:eq(3)
ho provato in CSS qualcosa di simile:
.tab_cadre_central .top::nth-child(0) table tbody tr td table tbody nth-child:eq(3) {
display:none;
}
ma non ha funzionato
Per rispondere alla domanda, no, non esiste un equivalente CSS standard per ': eq()' in jQuery. Vedi [differenza jQuery tra: eq() e: nth-child()] (http://stackoverflow.com/questions/7039966/jquery-difference-between-eq-and-nth-child) – BoltClock