Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何制作这样的导航:
http://www.andertons.co.uk/
悬停几乎与主导航脱节。有什么想法/提示我将如何做到这一点?
谢谢,丹
尝试这个:
<div class="naviItem"> Games <ul> <li>Game 1</li> <li>Game 1</li> <li>Game 1</li> </ul> </div>
CSS:
.naviItem ul { display: none; } .naviItem:hover ul { display: block; }