Here is my approach to creating stylish buttons.
<span class='button button-orange' id='sign-up'><input type='button' value='Sign up here' /></span>
When adding an anchor tag (with href) around the span, it allows hyperlinking in FF but causes issues in IE when hovering over the button's value attribute. (value='Sign up here')
Do you see any drawbacks to this method?
<form action='page.html'>
<span class='button button-orange' id='sign-up'><input type='submit' value='Sign up here' /></span>
</form>
Are there any significant consequences of implementing this technique?
Thank you for your insights!