I somehow found this webpage and was absolutely stunned by the navigation bar. http://www.webdesignerwall.com
When you put your mouse over “Home”, “About” or “Jobs” menu options, you get that awesome rollover effect in the brown field above. I like that very much and had a similar idea, but being an amateur, I can’t really say what type of programming is that. I would say it uses Ajax or JavaScript per se, but I’d like some of you to explain it to me, or even share some similar examples.
Thank you
This is done by CSS. It places an extra
<span>into every<a>link element. With CSS<span>s are hidden and positioned correctly above the menu elements (absolute). When one of the link is hovered the new style applies to the correct<span>which makes it visible.HTML
CSS