I am using Superfish 1.4.8 as a horizontal menu
The menu is inside of a fixed-width div of 900px
I would like Superfish's width to be 100% (900px), and have each li's width automatically scaled depending on the number of items. The number of items in this menu will change over time.
Basically I want the same behavior of a 100% width TABLE and the auto-sizing behavior of TD's
I found the following CSS additions from an old 2009 post on how to do this:
.sf-menu { width: 100%; float: left; display: table;}
.sf-menu ul { display: table-row; }
.sf-menu ul li { display: table-cell; min-width: 20%; }
It looks like it should work, but it does not, the menu still appears exactly the same
Here it is on jsFiddle: http://jsfiddle.net/xRcJL/
Has anyone been able to make Superfish scale to 100% of a container?