I am trying to use this to select the second a tag from a list:
.container li a:first-child + a { ... }
but it doesn\'t seem to work. Is th
Use nth-child(2)
.container li a:nth-child(2){....}