Reputation: 1604
I made a page background with an image cut into small pieces to generate the background.
However in internet explorer 9 I have issues with the background images having an outline. This does not occur in Firefox 4 or Chrome.
What's the CSS property to remove this?
.bottomright {background-image: url(../Images/Forms/form15.png);}
Upvotes: 0
Views: 2074
Reputation: 295
In IE9, the above jfiddle isn't showing an outline.
Only time I've seen it apply the outline is on links (including image links) and to get rid of that you add-
a:active, a:focus {
outline: none;
}
Upvotes: 1