/ Published in: CSS
Remove that pesky dotted border around img elements, especially images inside <a> / link tags.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//remove dotter border on lone imgs img {border:none;} //remove dotted borders on img links a:active, a:focus {outline: 0;}