I've got a series of tabs on a page. The tabs are set to relative position. They are then moved 15px to the left. The resulting style looks like this:
style="position:relative;left:-15px" (note that each tab's left is going to be -15 * tab number - so #2 will be -15, #3 is -30, etc.)
This gives the tabs a nice overlapping feel, which is wanted. However, the downside is that the original "width" (without the move to the left) of the tabs is used when centering the table. The result is that the table feels lop-sidded.
Is there anyway to tweak this behavior?