JSFiddle - React, Tailwind, and code Playground

by santosh_patnala

HTML

<p><b>Note:</b> Internet Explorer and Opera do not support the appearance property.</p>
<div>Some text</div>

CSS

div {
    -moz-appearance:button;
    /* Firefox */
    -webkit-appearance:button;
    /* Safari and Chrome */
    appearance:button;
    width:150px;
    text-align:center;
    
}