JSFiddle - React, Tailwind, and code Playground

by Gabriele Petrioli

HTML

<div>simple text should be courier</div>
<input type="text" value="input text - does not inherit" /><br/>
<input type="text" class="inherit" value="input text - inherit from css" />

CSS

body{font-family:courier;}

input{width:250px;}

input.inherit{font-family:inherit;}