Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used jQuery UI buttons in a project, and they have been working fine.

But, in IE7, the icon doesn't float as it should. I realise IE doesn't have rounded corners support yet, but that is OK.

Good browsers render it fine

good example

IE sucks

bad example

I start with a button in the HTML

<button type="submit"><span class="ui-icon ui-icon-mail-closed"></span>Send</button>

I then loop through the buttons, using this little bit of jQuery on each

$('#content button').each(function() {                
    var icon = $(this).find('span.ui-icon');
    var primaryIcon = icon.attr('class').replace(/ui-icon\s?/, '');
    icon.remove();
    $(this).button({ icons: {primary: primaryIcon }, label: $(this).text() });
});

I was just calling button() on them, but I decided to do this to make sure I was using the library the way it was designed.

I had some CSS on the icon too

button span.ui-icon {
    display: inline;
    float: left;
    margin-right: 0.1em;
}

The page from above is also available. (shortened to void HTTP referrer, I hope).

What am I doing wrong?

Thanks very much!

Update

I tried making the icon as an inline block element, as per Meder's answer.

button span.ui-icon {
    display: inline;
    float: left;
    margin-right: 0.1em;
    margin-top: -1px;
    /* get rid of margin for inline element */
    #margin: auto; 
    /* this should revert the element to inline as per declaration above */
    #float: none; 
    /* hasLayout = true */ 
    #zoom: 1;
}

This, however, has the unusual affect of blanking the button elements!

IE7 with display: inline-block on icon

Whatever shall I do?

Many thanks, again!

share|improve this question
go Bananas, and Recipe of the Week: is Prawn Risotto with Peas – Rakesh Juyal Oct 4 '10 at 7:32
@Rakesh I don't understand your comment. – alex Oct 4 '10 at 7:41

6 Answers

Anyway, when you float an element it becomes a block box. Display:inline is useless. And you should always set a width on floated items.

share|improve this answer
display: inline is useful for avoiding the double margin bug in IE6. Why should I always set a width, when IE7 is the only browser having an issue? – alex Oct 4 '10 at 7:40

You need to explicitly define a width for horizontal floats or the float drops. The alternative is using inline-block.

If that doesn't work let me know.

share|improve this answer
Thanks Meder. I might use inline-block. I'll try in the morning, I'm going to have a break now. – alex Oct 4 '10 at 8:12
Hey Meder, I tried giving the icon display: inline (or its equivalent) for IE7 and the buttons went blank! See my edit on OP - give me a pointer in the right direction and you will have an accepted answer sir! – alex Oct 4 '10 at 23:58

You button lacks a width

share|improve this answer
I don't want to explicitly give them widths. – alex Oct 4 '10 at 7:21
This is really a comment, not an answer to the question. Please use "add comment" to leave feedback for the author. – Florent Aug 20 '12 at 8:02
<button type="submit"><span class="ui-icon ui-icon-mail-closed"></span><span style="float:left;">Send</span></button>
share|improve this answer

your rendered html,

<button type="submit" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary" role="button" aria-disabled="false">
    <span class="ui-button-icon-primary ui-icon ui-icon-mail-closed"></span>
    <span class="ui-button-text">Send</span>
</button>

have you tried css,

button span.ui-button-text {
    display: inline;
    float: left;
}
share|improve this answer
Thanks for your answer. I tried that, and then I tried it again just then with IE Developer Tools, and it didn't work :( – alex Oct 4 '10 at 8:09

Try

button span.ui-icon {
    display: inline;
    float: left;
    margin-right: 2px;
}
button{width:75px;}

IE need a width for the button I think.

Here's my jsfiddle try

share|improve this answer
Can someone explain the downvote? It works on IE7 jsfiddle.net/3SgjR/8/embedded/result – Shikiryu Mar 25 at 21:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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