JSFiddle - React, Tailwind, and code Playground

by Vitaliy T

HTML

<div id="searchbar">
            <form class="form-wrapper">
                <div class="input-wrapper">
                    <input type="text" placeholder="Input text here"/>
                </div>
                <button type="submit">Search</button>
            </form>
        </div>

CSS

#searchbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.input-wrapper {
    position: absolute;
    right: 110px;
    left: 0px;
    top : 0px;
    bottom: 0px;
}

/* Form wrapper styling */
.form-wrapper {
    position: relative;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 37px;
    display: inline-block;
}
 
.form-wrapper input {
    height: 100%;
    width: 100%;
    padding: 8px 10px;
    float: left;   
    color: #1f1f9d;
    border: 0;
    background: #e6e6e6;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
 
/* Form submit button */
.form-wrapper button {
    position: absolute;
    right: 0px;
    top: 0px;
    overflow: visible;

    
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 37px;
    width: 104px;
    color: #ffffff;
    background: red;
}  
   
 
.form-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
}