JSFiddle - React, Tailwind, and code Playground

by Vicky_007

HTML

<a href="">
    upload file
    <input type="file">
</a>

CSS

a {
    display: block;
    height: 30px;
    line-height: 30px;
    width: 90px;
    overflow: hidden;
    text-align: center;
    background-color: green;
    color: #fff;
    text-decoration: none;
    position: relative;
}
input {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
    font-size: 40px;
}