I’m trying to get a layout more or less like the following, but with fixed width’s for the ‘a’ links:
http://jsfiddle.net/9SnJQ/
I can specify a fixed width by changing the ‘a’ links to block elements, but then I end up with this layout:
http://jsfiddle.net/Fh943/
How can I get the best of both (the correct positioning with fixed widths)?
Use
display: inline-block;for youratags. See this updated fiddle.