When I search for a css button generator they always have code that styles an anchor.
<a href="#" class="button">The Button</a>
But I'm wondering why they don't ever try to style a generic button:
<input type="button" value="The Button" />
is it because it's harder to style an input of type button?