JSFiddle - React, Tailwind, and code Playground

by Jatin Patil

HTML

<div id="Holder">
    <form method="post" action="Vote.php">
        <input type="text" id="Input" name="Input" />
        <input type="submit" id="Submit" value="Vote" />
    </form>
</div>

CSS

body {
    background-color:gray;
}
#Holder {
    width:220px;
    height:50px;
    top:5px;
    left:5px;
    background-color:black;
    border:3px outset darkred;
    position:absolute;
}
#Holder #Input {
    top:12px;
    left:5px;
    position:absolute;
}
#Holder #Submit {
    top:12px;
    right:5px;
    background-color:black;
    border:2px outset darkred;
    color:white;
    position:absolute;
}