I am creating a css button using the following image...

css bg

This is the background of a table.. the text for the image goes inside td blocks.

You can see it in action here, please view source to see how it all works, css is in-lined.

css button link

Everything appears to be working great... but view it in IE and Firefox. You'll notice that for some reason there are line breaks in IE and not in Firefox. I want it to not have the line breaks, firefox style.

I know a lot of people will immediately say "Just add a DOCTYPE tag and all will be well!" Unfortunately my use case is such that it has to work in I.E. quirks mode :(

So..with that being a restriction.. any ideas?

Thanks in advance!

link|improve this question

I just told someone today, that's why you always code to standards and never to browsers....ESPECIALLY Internet Explorer. And reason #9364 you should never use tables for layout. – Rob Oct 5 '11 at 0:07
I fully agree.. I really really really wish I didn't have to use quirks mode. :/ – Craig Oct 5 '11 at 0:08
Just add *margin-right: 4px !important; to the .spriteTableButton class to give you spacing on the right. The * in the rule will ensure it only applies to IE. – Strelok Oct 5 '11 at 2:29
feedback

1 Answer

up vote 2 down vote accepted

Did you try to add "float:left;" to css class ".spriteTableButton" ? This can solve the problem of linebreak in no time.

link|improve this answer
This is the correct answer. – Strelok Oct 5 '11 at 0:41
Thanks...That fixes the line break. However, doing that the buttons have absolutely no space in between each other and the margin does nothing. I suppose I could add a small div w/ some amount of width but I'd prefer a better solution than that. Ideas? – Craig Oct 5 '11 at 0:44
Awesome, if anyone is reading this in the future, be sure to read Strelok's comment above, it fixes the issue with the margin not working. Thanks a bunch. – Craig Oct 5 '11 at 4:03
OK. Bad news. This fix does not work in Safari. It works for both IE quirks mode and firefox but fails in safari. I have updated the url .. lolstrategies.com/test/button_sample.html to show it with your suggested code. Please have a look in Safari. Not only are the table breaks still there but the whole thing is now aligned to the right for some reason... – Craig Oct 5 '11 at 17:20
Ok, the messed up align was due to me removing the * that you suggested so that is back in now... everything aligned middle, which is probably OK. Still need to get rid of those damn table breaks tho.. – Craig Oct 5 '11 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.