[ accessibility-tips ]

Indicate img elements that miss alt attribute

What is an alt attribute ?

It specifies an alt text for an image, if the image cannot be shown.

Tips to write a good alt text :


This code snippet gives you a red outline to any img having a missing or blank alt attribute in the webpage.

img:not([alt]),
img[alt='']
{
outline: 8px dashed red;
}

Tools to find the missing alt text in the webpage

Example :

No alt text

Thank you so much for reading my article.😊