Forums

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

Home Forums CSS Last child selector margin right

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #245301
    jknetdesign
    Participant

    I set up these 3 divs so the anchor tag wraps the entire container. Before I added the link I used :nth-last-child property to remove the margin right on the Newsletter callout.

    The question: how to properly organize the CSS to maintain current UX and remove the margin from the 3rd div?

    http://www.aamonterey.org/test/

    #245311
    JamiePatt
    Participant

    It looks like your margin is on the anchor inside the callout div, css should be:

    .callout:last-child a {
        margin-right: 0;
    }
    
    #245314
    jknetdesign
    Participant

    That’s it!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.