On my site, I use a background image of a small arrow to denote links
that lead away from my site. This page has four such links in the first
section:
The links are coded thus:
<a class="external " href="url">blah </a>
with:
a.external {
background: transparent url('/images/ext') no-repeat 100% 55%;
padding-right: 11px;
}
All works fine, except in IE (surprise) when the image is not shown if
the element either goes across two lines or starts at the beginning of a
line. Load up the above URL in IE and resize the window to see the effect.
Is this a known IE bug (I expect so) and is there anything I can do
about it (I guess not...)?
--
Mark.
that lead away from my site. This page has four such links in the first
section:
The links are coded thus:
<a class="external " href="url">blah </a>
with:
a.external {
background: transparent url('/images/ext') no-repeat 100% 55%;
padding-right: 11px;
}
All works fine, except in IE (surprise) when the image is not shown if
the element either goes across two lines or starts at the beginning of a
line. Load up the above URL in IE and resize the window to see the effect.
Is this a known IE bug (I expect so) and is there anything I can do
about it (I guess not...)?
--
Mark.
Comment