JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<!DOCTYPE>
<html>
    <head>
        <style>
            input::-webkit-outer-spin-button,
            input::-webkit-inner-spin-button {
                /* display: none; <- Crashes Chrome on hover */
                -webkit-appearance: none;
                margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
            }            
        </style>
    </head>
    <body>
        <p>View this in a browser that doesn't suck.</p>
        <input type="number" id="foo" value="10000" onblur="alert(this.value);">
    </body>
</html>