Always use button for clickable elements

from blog Muffin Man, | ↗ original
Always try to use when element is clickable, but it is not a link. Avoid , , and other elements. Note that display: flex works differently on buttons in different browsers, but we have an easy fix for that. Why? # You will get multiple benefits - user can "tab" to it, and to activate it by pressing enter (that will trigger click event). There...