画像置換のリンクをクリックした際にアウトラインがヨコに伸びてしまうのを防ぐ方法


/ Published in: CSS
Save to your folder(s)

text-index: -9999px;
などして置換している場合、この数字の通りにアウトライン (クリックした際の点線) がヨコに伸びてしまう。
これを解決する方法。


Copy this code and paste it in your HTML
  1. a{
  2. overflow: hidden;
  3. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.