/ Published in: CSS
By default any image that is wrapped in a link will have a border around the image (similar to the way text is underlined). Removing the border is simple
Since I never want to see the border around image links I usually set the above on every site I develop
Expand |
Embed | Plain Text
1 a image { 2 border: none; 3 } 4 5 or 6 7 a image { 8 border: 0; 9 }
You need to login to post a comment.
