Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の中にいくつかのアンカーがありますbody:
body
<a href="link1.html"></a> <a href="link2.html"></a> <a href="link3.html"><img src="img1.png" /></a>
画像が入っているものは、右下に奇妙な青い点があります.
私はcssを試しa { border: none; }ましたが、まだそこにあります!
a { border: none; }
どんな助けでも大歓迎です。ありがとう。
アンカー タグがデフォルトで下線を引いているようです。text-decorationアンカーの を に設定してみてくださいnone。
text-decoration
none
これで修正されるはずです:
a{ text-decoration: none; }