JSFiddle - React, Tailwind, and code Playground

by Troy Johnson

HTML

<p class="button">
<a href="#">
Buy Now!
</a>
</p>

CSS

.button {
   background: red            !important;
   color: white               !important;
   padding: 3px               !important;
   border-radius: 5px         !important;
   border: 1px solid red    !important;

   /* For good measure */     
   text-decoration: none      !important;
}