0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Google PageSpeed Insights【Links do not have a discernible name】の対処法

Last updated at Posted at 2020-12-16

Google PageSpeed Insightsにて、AccessibilityのLinks do not have a discernible name警告の対処法です。

Links-do-not-have-a-discernible-name.JPG

aタグ(link)にテキストが無いのが原因

Links do not have a discernible nameの警告は、aタグにテキストが無いのが原因になります。

<a href="demo"><i class="fab fa-twitter"></a>

上記のように、リンクにアイコンのみ使用している場合に発生することが多いと思います。

<a href="demo"><i class="fab fa-twitter">Twitterへのリンク</a>

テキストを記述すれば、警告を消すことができます。

aria-labelを指定することでも解消できる

アイコンのみのリンクで、テキストを使いたくない時もあるかと思います。
その場合は、aria-label属性を指定します。

<a href="demo" aria-label="Twitterへのリンク"><i class="fab fa-twitter"></a>

上記でも、Links do not have a discernible nameの警告を解消することができます。

参考

https://web.dev/link-name/?utm_source=lighthouse&utm_medium=devtools#how-to-add-accessible-names-to-links

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?