Full width horizontal navigator / menu bar
This week a small and easy tweak for the youngest.
Have you ever faced this need?
Thx to HorizontalNav for the image, he faces the same problem as us and resolve it with a plugin
Instead of using some fancy jquery plugins we’ll solve this with 2 css lines. No big deal.
Usually you’ll build a horizontal navigation bar like this:
ul.nav{ clear: left; } ul.nav li{ float: left; }
Instead of your standard CSS code use the display: table trick
ul.nav{ display: table; width: 100%; } ul.nav li{ display: table-cell; }
BAAM! Solved.
No comments yet.