How can I create a menu in HTML without using Javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:58:40Zhttp://stackoverflow.com/feeds/question/233251http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript3How can I create a menu in HTML without using Javascript?Mnementh2008-10-24T12:13:53Z2009-01-21T21:53:54Z
<p>Since many years a GUI-standard are the menu-bars of applications with menus popping up, if you click or hover an entry in the menu-bar. Some websites implement this feature too, but they are using Javascript, as far as I can see. For different reasons Javascript can be a problem, so the question: Is this possible to implement without Javascript, only using HTML and CSS?</p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233266#2332660Answer by Gamecat for How can I create a menu in HTML without using Javascript?Gamecat2008-10-24T12:20:13Z2008-10-24T12:20:13Z<p>You can use the pseudoclass :hover to get an hover effect.</p>
<pre><code>a:link {
color: blue;
}
a:hover {
color: red;
}
</code></pre>
<p>I can give a more extensive example but not right now (need to get the kids to the dentist).</p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233269#23326910Answer by Jeff Fritz for How can I create a menu in HTML without using Javascript?Jeff Fritz2008-10-24T12:21:32Z2008-10-24T12:37:38Z<p>I've done something like this before, and it's a trick pulled off by placing the menu items in anchor tags, with submenus in hidden divs INSIDE those anchor tags. The CSS trick is to make the inner div appear during the a:hover event.</p>
<p>It looks something like:</p>
<pre><code><style>
A DIV { display: none; }
A:hover DIV { display: block; }
</style>
<a href="blah.htm">
Top Level Menu Text
<div><ul>
<li><a href="sub1.htm">Sub Item 1</a></li>
<li><a href="sub2.htm">Sub Item 2</a></li>
<li><a href="sub3.htm">Sub Item 3</a></li>
</ul></div>
</a>
</code></pre>
<p>Your mileage may vary...</p>
<p>EDIT: Internet Explorer 6 and lower do NOT support the :hover pseudo-class on other elements besides A. In more 'modern' browsers, it is accepted to be able to use this trick with LI, TD, DIV, SPAN, and most any tag.</p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233277#2332774Answer by extraneon for How can I create a menu in HTML without using Javascript?extraneon2008-10-24T12:22:42Z2008-10-24T12:22:42Z<p>Have a look at <a href="http://www.cssmenumaker.com/" rel="nofollow">CSS Menu Maker</a>. </p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233302#2333024Answer by Davy Landman for How can I create a menu in HTML without using Javascript?Davy Landman2008-10-24T12:29:57Z2009-01-21T21:53:54Z<p>Best known technique is the <a href="http://www.alistapart.com/articles/dropdowns" rel="nofollow">suckerfish menus</a>. Searching for that will result in a lot of interesting menu's. It only needs javascript in IE6 and lower.</p>
<p><a href="http://www.htmldog.com/articles/suckerfish/" rel="nofollow">Here's a list of the sons of the suckerfish menus.</a></p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233516#2335162Answer by bobince for How can I create a menu in HTML without using Javascript?bobince2008-10-24T13:25:06Z2008-10-24T13:25:06Z<p>Consider using the CSS methods as a backup for when JavaScript is unavailable. JavaScript can* provide a better user experience for drop-down menus because you can add some delay factors to stop menus immediately disappearing if the mouse briefly leaves their hover area. Pure-CSS menus can sometimes be a bit finicky to use, especially if the hover targets are small.</p>
<p>*: of course, not all menu scripts actually bother to do this...</p>
http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233575#2335751Answer by Yadyn for How can I create a menu in HTML without using Javascript?Yadyn2008-10-24T13:41:55Z2008-10-24T13:41:55Z<p>There's also <a href="http://en.wikipedia.org/wiki/Eric_Meyer" rel="nofollow">Eric Meyer</a>'s original article on <a href="http://meyerweb.com/eric/css/edge/menus/demo.html" rel="nofollow"><strong>pure CSS menus</strong></a>.</p>
<p>There are bound to be much more robust and modern takes out there now mentioned by others, but I thought I'd mention it for posterity. :)</p>