I'm using css to format ul
/ li
s for a dropdown menu. Everything works well on Firefox & IE, but fails on iPhones (eg Safari): the MENU button isn't active.
Failing code example: http://jsfiddle.net/7jfo9x8h
<ul class="Menu">
<li>MENU
<ul>
<li> <a href="foo.html">Sub 1</a> </li>
...
</ul>
</li>
</ul>
Relevant CSS:
ul.Menu li:hover>ul{ display:block; }
Apologies for the involved css shown in jsfiddle; it was copied from a site that did what I needed.
I can't figure out why the iPhone fails. (PS: I don't have one; need to ask a friend to check any mods.)