I'm using jQuery UI, and have built a toolbar (a div element), with button groups (span element), each containing buttons, radios etc.
On some of the radio buttons, I have created complex labels to simulate MS Word 2007 style buttons. There is an iframe with a style preview, and a p element with the button name.
E.g.
<label ... >
<iframe ... ></iframe>
<p>Button Name</p>
</label>
Some button names could be very long, so I gave the p class "overflow:hidden". This has corrected the overflow, but the label has shrunk in height slightly in firefox, and in IE8, normal buttons are displayed higher up. Chrome displays exactly how I expect, versions of IE lower than 8 aren't important.
Here is a screenshot showing the problem: http://img155.imageshack.us/img155/1504/layoutissue.jpg
The actual page is fairly complex, and generated with JS, so I can't copy/paste it here. I don't know what other CSS to post to give people an idea either, but if anyones interested I'll PM you my IP so you can have a look.
I'd be grateful for any suggestions.