Is it true that there are semantically correct & incorrect ways of displaying pictures/icons?
I mean of course it's not very friendly to include all pictures of a newspaper article as background images because that way, screen readers can't read out the alt text, but what about icons or user interface elements? Is it justifiable from a semantic oriented point of view to include these as background-images?
|
|
|||
|
There are some semantically correct and incorrect ways of displaying different kinds of images.
|
|||||
|
|
I don't think you should include icons as an separate element just representing that icon; e.g. an Instead each icon represents a specific function – therefore you should use an element that could be used for that functionality, e.g. an anchor Using separate markup for icons is a semantic error/mistake. The icon itself does nothing. It's just there to memorize the function of the underlying element. But in fact those elements are still there when you remove the icon. So yes, I always would include icons as background images to an element directly or to a generated pseudo element. |
|||
|
|
ielements with CSS classes for icons. If it's good trend, I don't know. In general, IMO, everything that is related to UI (which includes icons) should be in the CSS. – Felix Kling Feb 5 at 21:04