JSFiddle - React, Tailwind, and code Playground

HTML

<button>Home</button>

<button class="unstyled">Home</button>

<!--//
This example shows that you *can* style buttons, including
removing all styles.

It has been tested:
Mac OSX: latest versions of Safari, Chrome, Firefox, Opera
Win7: latest versions of IE, Chrome, Firefox, Opera
//-->

CSS

.unstyled{
	margin:0;
	padding:0;
	border:0;
	background-color: transparent;
}