Float Method of Horizontal Menu Styling (equal width links)

This method uses the float property on the list item element so that they will display side by side. The advantage to this method is that you retain the block display box so that you can use display: block on the anchor element and do image replacement (a lesson for next week).

The disadvantage is that you will get all the collapsing containers, float drop and float clears that you need to accommodate. For simple menus, overflow: auto on the nav will fix the collapsed container.

This menu is creating links of the same width in the banner. This can be a challenge for the box model (if the browser has bugs when calculating it) or you have a quantity that doesn't divide up tidily. You can use :last-child "structural pseudo-class selector" to fix this (a lesson for another day).