Forums

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

Home Forums CSS [Solved] My card flip won't work

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

    T^T As above, I can’t figure out why it won’t work. Any suggestion? http://codepen.io/lrelia/pen/ItinE

    #153905
    TheDoc
    Member

    You have:

    .Qcontainer: hover .film {
        -webkit-transform: rotateY(180deg);
    }
    

    It needs to be:

    .Qcontainer:hover .film {
        -webkit-transform: rotateY(180deg);
    }
    

    Note the space between : hover.

    #153918
    lrelia
    Participant

    Pretty Cool.Thanks~

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