Currently I'm trying to understand some CSS parts but couldn't able to understand them due to some notations.
i went through google but couldn't able to find something related to this
can someone please explain the below CSS part?
tbody > tr > td {
color: red;
}
tbody > tr > td:not(:empty) ~ td {
color: green;
}
tbody > tr > td:empty,
tbody > tr > td:nth-child(n+6) {
color: black !important;
}