CSS Table Menu Navigation

0 replies
  • WEB DESIGN
  • |
So I just finished readying the "Everything You Know About CSS Is Wrong" book from SitePoint.

Very interesting stuff.

It got me think about not only page layouts, but navigation menus as well.

Does anyone have input on making a horizontal menu bar out of CSS Tables?

The CSS Tables are so much more efficient than all the silly css required to make a <li> float left and blah blah blah.

Obvioulsy for IE 7 or less, it would require separate CSS code, but that is negligible:

.cell {
float: left;
}

.table-footer {
clear: both;
}
#css #menu #navigation #table

Trending Topics