vertically align button & text, in IE language?
As you can see in foll开发者_如何学Cowing screen shot, button goes up and text goes down. How to fix this?
http://i53.tinypic.com/2yuizc2.png
Try this
<div>
<div style="float:left; height:auto">You Text</div>
<div style="float:left; height:auto"><span>Your Button</span></div>
</div>
This should work fine with IE6, 7, 8..
精彩评论