admin管理员组文章数量:1291013
I would like to ask, if there is any way to develop a mouse-over dropdown menue using CSS and HTML, because I have seen before some websites like google for example developed such menus and it seems that once you pass through it a hidden tag gonna be visible to you.
Please if any one have an idea, provide a source code of that idea
Thanks and regards
I would like to ask, if there is any way to develop a mouse-over dropdown menue using CSS and HTML, because I have seen before some websites like google for example developed such menus and it seems that once you pass through it a hidden tag gonna be visible to you.
Please if any one have an idea, provide a source code of that idea
Thanks and regards
Share Improve this question asked Oct 10, 2011 at 19:25 user950356user9503562 Answers
Reset to default 5This is referred to a CSS hover menu. They're a great alternative to using JavaScript.
Sample implementation:
.trigger ul.menu
{
display: none;
}
.trigger:hover ul.menu
{
display: block;
}
Sample Tutorial: http://www.shingokko./blog-entry/pure-css-hover-menu.html
Contrary to other answers, this method is cross-browser patible. If implemented correctly, it will work just fine in IE6+ (Source).
I don't think I can explain it better than this: http://www.htmldog./articles/suckerfish/dropdowns/
That's what's known as "Son of Suckerfish Dropdowns". It should get you going on the right direction. Do be aware that CSS-only dropdowns won't work in IE 6 and older.
本文标签: javascriptMouseover Navigation Dropdown Menu Using HTML and CSSStack Overflow
版权声明:本文标题:javascript - Mouse-over Navigation Dropdown Menu Using HTML and CSS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741519561a2383098.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论