Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Psudo classes are complicated

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #169095
    amidigital
    Participant

    .vidBox:nth-child(3n+3)

    The above is working. In addition can I select the first div inside it?

    #169111
    shaneisme
    Participant

    This might give you what you want:

    .vidBox:first-child,
    .vidBox:nth-child(3n+3) {
      ...
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.