Sachsentext

Images that are important should not have a purely white-space "alt" attribute

Any image that is not used decorativey or which is purely for layout purposes cannot have an "alt" attribute that consists solely of white space (i.e. a space, or a new line).

Example

Wrong

<img src="dog.jpg" alt=" ">

Right

<img src="dog.jpg" alt="A photograph of a dog">