[pablod] So here's a thing. I'm working on a project where we're using Foundation, and I haven't messed with Foundation in a while, so I'm basically learning from scratch. When I first started looking through the documentation, I was surprised to see that some of the markup they suggest for the buttons use just an <a> tag (href-less), with a .button class, instead of an actual <button> element. I kinda side-eyed it, but decided to go along with the patterns in Foundation since I figured ZURB knows its stuff. But after seeing @cordelia 's fantastic talk last week specifically calling out this practice as terrible for a11y, I'm changing everything back to <button>s, because that's certainly the right thing to do for my users. But it leaves me with the question of why Foundation would offer <a> buttons as a recommended pattern for a button? Is there an actual benefit, or is it just a holdover from before? I can't imagine that the thoughtful folks at ZURB a wouldn't have a reason for it.