I have created a page with two buttons (that are links) on a page. For an uknown reason, a dash displays between the buttons in chrome, ff, and ie. I am trying to get just a little bit of space between the buttons instead of this weird dash. Here is some simple sample code to replicate the issue:
<!DOCTYPE html>
<meta charset='utf-8'>
<html>
<head><title>Button Dashes?</title></head>
<body>
<div>
<a href="http://www.google.com">
<button>Google</button>
</a>
<a href="http://www.yahoo.com">
<button>Yahoo</button>
</a>
</div>
</body>
</html>
What do I need to do to remove the dash between the buttons?