JSFiddle - React, Tailwind, and code Playground
by Павел KLON
HTML
<div>
<form action="#">
<input class="input" type="text" placeholder="Введите поисковый запрос">
<input class="button" type="submit" value="">
</form>
</div>
CSS
.input {
width: 200px;
height: 30px;
outline: none;
border: 1px solid #dcdcdc;
border-radius: 5px;
padding-left: 10px;
}
.button {
width: 30px;
height: 32px;
border: none;
outline: none;
background-image: url(http://www.centre-alternance.fr/images/recherche.png);
margin-left: -31px;
margin-top: 1px;
position: absolute;
border-radius: 0px 5px 5px 0px;
cursor: pointer;
}
div {
width: 250px;
}