up vote 0 down vote favorite
share [g+] share [fb]

I've searched and seen people write about float:clear, but i think I'm having the opposite problem?

My button background image works with float, but when I remove float, I only see the button value text with 0 margin and the background image behind it-the button image is being cropped. I'm sure this is a very basic thing, but I can't understand what I'm doing wrong?

I can put a span around the button text and mess with margins to make something work, but I'm not sure if that is the right way to fix this?

I can include code if needed, but I'm hoping this is just an obvious thing to someone.

link|improve this question

Could you post code? What do you mean by "button"? <button>? <input type="button"/>? A div with CSS to style it visually like a button? – CalebD Jan 26 '10 at 21:48
Can you post the HTML tag of that button? Is that display:inline||block ? – f1vlad Jan 26 '10 at 22:50
feedback

1 Answer

up vote 2 down vote accepted

If the only thing you to do is remove float to cause the problem then my guess is you need to add display: block to your button's css.

link|improve this answer
That was it-can't believe I missed that. Thanks! – Joel Jan 26 '10 at 21:51
feedback

Your Answer

 
or
required, but never shown

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