/ Published in: CSS
In IE6 and IE7 when wrapping an anchor to the next line, the first anchor with the class="anchorClass" will not display the background image nor have the clickable padded area.
In your IE6 & IE7 bugfixes CSS adding the property/value display:inline-block; to the anchor class will fix this for IE.
In your IE6 & IE7 bugfixes CSS adding the property/value display:inline-block; to the anchor class will fix this for IE.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Normal CSS; .anchorClass a {background:url('image.gif') center right no-repeat;} IE6 & IE7 extra bugfix CSS; .anchorClass a {display:inline-block;}