How can I create a menu in HTML without using Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:58:40Z http://stackoverflow.com/feeds/question/233251 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript 3 How can I create a menu in HTML without using Javascript? Mnementh 2008-10-24T12:13:53Z 2009-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#233266 0 Answer by Gamecat for How can I create a menu in HTML without using Javascript? Gamecat 2008-10-24T12:20:13Z 2008-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#233269 10 Answer by Jeff Fritz for How can I create a menu in HTML without using Javascript? Jeff Fritz 2008-10-24T12:21:32Z 2008-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>&lt;style&gt; A DIV { display: none; } A:hover DIV { display: block; } &lt;/style&gt; &lt;a href="blah.htm"&gt; Top Level Menu Text &lt;div&gt;&lt;ul&gt; &lt;li&gt;&lt;a href="sub1.htm"&gt;Sub Item 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="sub2.htm"&gt;Sub Item 2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="sub3.htm"&gt;Sub Item 3&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;/div&gt; &lt;/a&gt; </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#233277 4 Answer by extraneon for How can I create a menu in HTML without using Javascript? extraneon 2008-10-24T12:22:42Z 2008-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#233302 4 Answer by Davy Landman for How can I create a menu in HTML without using Javascript? Davy Landman 2008-10-24T12:29:57Z 2009-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#233516 2 Answer by bobince for How can I create a menu in HTML without using Javascript? bobince 2008-10-24T13:25:06Z 2008-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#233575 1 Answer by Yadyn for How can I create a menu in HTML without using Javascript? Yadyn 2008-10-24T13:41:55Z 2008-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>