JSFiddle - React, Tailwind, and code Playground

by danield770

HTML

<div class="container">
    <span class="currency">$</span><!--
    --><span class="integer">4,080.</span><!--
    --><span class="decimal">53</span>
</div>

CSS

html{
				margin: 0;
				padding: 0;
				border: 0;
			}
			body{
				background-color: transparent; 
				overflow: hidden;
				font-family: "Helvetica";
				color: #359115;
				font-weight:bold;
			}

			.currency, .decimal{
				font-size: 13px;
			}
			
			.integer{
				font-size: 20px;
			}
			
			.decimal{
				text-align: left;
			}