I\'m trying to align some text of different sizes vertically, however, Firefox displays the smaller text way above the middle.
CSS:
div.categoryLinks {
Firefox is rendering correctly. The vertical-align property is inline, which means it doesn't apply to block elements like
, etc). Try adding display: inline and see if that works.