IE7 Line Height Issue?
I have a link containing a span which should read something like 'link +', this displays correctly in all browsers except ie7:
Solution 1:
You can try and display every element as a block:
<a style="display: block; width:200px;" href="">
<span style="float: left; display: block;">Open a ticket</span>
<span style="float: right; display: block;">+</span>
</a>
Of course, this will not be acceptable if you need that link to be inline.
Post a Comment for "IE7 Line Height Issue?"