IE8 ignoring background "no-repeat" value
I have a page that uses a background image to do rounded开发者_运维百科 corners, and in IE8 on Windows XP the background image repeats.
(Link Dead)
It looks right in other browsers and even in "Compatability View" in IE8.
Does anyone know how to remove the repetion? I'm stumped!
We had this issue with an empty button tag, and changing the source from
<button type="submit" class="remove-group"/>
to
<button type="submit" class="remove-group"></button>
fixed it.
Not sure if that helps others who find this thread.
The FORM elemement was terminated within a DIV element that started after it did. That is, the document was not "well formed" in XML parlance.
I had the exact same problem. Turns out one of my tags wasn't well formed. i.e. I had <a href="xxx"><div></a></div>
Changed to <a href="xxx"><div></div></a>
and got rid of the problem in ie8
精彩评论