Forums

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

Home Forums CSS CSS hover on WinRT IE

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

    Hi, have issues with Windows RT devices and specifically the IE browser(IE as always). I have menus that have submenus that are displayed on hover in case user is using mouse, but when there is touchscreen/mouse option for user and user uses touch – submenus are not displayed when usin IE(all versions).

    Those menu options that have submenus have class “multi-selection” and menu under it has classes “list” and “lvl-2”.
    Maybe there is a solution for this? To display submenus on touch if there is submenu under the selection.

    CSS:
    .multi-level{
    &:hover, &:active, &.selected{
    .list.lvl-2{
    //dropdown display trigger
    display: block;
    }
    }
    }

    P.S. Everything works great with any other browser on the same device(device I am testing on is Dell XPS).
    Thanks in forward for any comments on this.

    #194424
    Paulie_D
    Member

    touch events are usually handled by Javascript (AFAIK)…not CSS.

    http://webreflection.blogspot.co.uk/2014/05/touch-events-for-ie-mobile.html

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