• missing xbfish.com image

Tag Archives: image dotted line

[CSS] Removed Dotted Line around image

If you would like to remove this irritating dotted line when users click and hold the image, just do the following on your stylesheet in CSS:

1
2
3
a {
    outline: none;
}

Easy !~ But this would also means it will remove dotted line around all hyperlinks (including text hyperlinks) unless you define a class for it:

1
2
3
a.YOURCLASS {
    outline: none;
}