Result:Implementation Codehtml <nav class="dropdownmenu"> <ul> <li><a href="http://www.jochaho.com/wordpress/">123WORDPRESS.COM</a></li> <li><a href="http://www.jochaho.com/wordpress/about-pritesh-badge/">jb51</a></li> <li><a href="#">Articles on HTML5 & CSS3</a> <ul id="submenu"> Difference between SVG vs. Canvas <li><a href="http://www.jochaho.com/wordpress/new-features-in-html5/">New features in HTML5</a></li> <li><a href="http://www.jochaho.com/wordpress/creating-links-to-sections-within-a-webpage/">Creating links to sections within a webpage</a></li> </ul> </li> <li><a href="http://www.jochaho.com/wordpress/category/news/">News</a></li> <li><a href="http://www.jochaho.com/wordpress/about-pritesh-badge/">Contact Us</a></li> </ul> </nav> CSS3 .dropdownmenu ul, .dropdownmenu li { margin: 0; padding: 0; } .dropdownmenu ul { background: gray; list-style: none; width: 100%; } .dropdownmenu li { float: left; position: relative; width:auto; } .dropdownmenu a { background: #30A6E6; color: #FFFFFF; display: block; font: bold 12px/20px sans-serif; padding: 10px 25px; text-align: center; text-decoration: none; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; -ms-transition: all .25s ease; -o-transition: all .25s ease; transition: all .25s ease; } .dropdownmenu li:hover a { background: #000000; } #submenu { left: 0; opacity: 0; position: absolute; top: 35px; visibility: hidden; z-index: 1; } li:hover ul#submenu { opacity: 1; top: 40px; /* adjust this as per top nav padding top & bottom comes */ visibility: visible; } #submenu li { float: none; width: 100%; } #submenu a:hover { background: #DF4B05; } #submenu a { background-color:#000000; } The above is the details of the horizontal title menu implemented by CSS3. For more information about CSS3 title menu, please pay attention to other related articles on 123WORDPRESS.COM! |
<<: Detailed explanation of TypeScript's basic types
>>: Detailed explanation of the code for implementing six sieve styles using HTML grid layout
This article example shares the specific code of ...
1. IE8's getElementById only supports id, not ...
Record some of the processes of using node-media-...
This article example shares the specific code for...
Before using idea to write JSP files, you need to...
When you get a new Linux server, you generally ha...
As shown in the following figure: When we use vir...
1. Find a suitable version of redis for docker Yo...
Preface: Speaking of sandboxes, our minds may ref...
1. What is In react applications, event names are...
Event loop in js Because JavaScript is single-thr...
Recently, we need to perform a scheduled migratio...
Students who use Ansible know that Ansible only s...
Types of joins 1. Inner join: The fields in the t...
Table of contents Stabilization Throttling Summar...