How can I remove the border from the img tag?
<img src="">
I didn’t use the image path
There will be a border after putting it on the web page
But I can’t eliminate it by using border:0....
typecho2017-06-12 09:26:40
First, simply confirm whether the lower border comes from the style (usually thicker) or from the browser (usually thinner); if it is a custom style, adjust the style to exclude the img
tag; if it comes from the browser , you can try to use border: 0; outline: 0;
to adjust.