Forums

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

Home Forums CSS transition not works

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

    I have a simple code.
    https://codepen.io/mohammad983/pen/JjPmZow
    I want to change background of submenu class when we hover menu class

    #296237
    vulkanus
    Participant

    Hi,

    You have to put div “submenu” inside “menu” and target the hover menu like this:

    .menu:hover > .submenu {
    background-color: red;
    }

    or

    .menu:hover .submenu{
    background-color: red;
    }

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