There are two pseudo-selectors that accomplish what you’re looking for.
.media-link:nth-child(2) {
// here style
}
or
.media-link:nth-of-type(2){
// here style
}
There are two pseudo-selectors that accomplish what you’re looking for.
.media-link:nth-child(2) {
// here style
}
or
.media-link:nth-of-type(2){
// here style
}