JSFiddle - React, Tailwind, and code Playground

by Praveen Kumar Purushothaman

HTML

<div id="ct100_searchbox_div">
  <input id="ct100_searchbox_textbox"></input>
  <a id="ct100_searchbox_link" href="">...</a>
</div>

CSS

#ct100_searchbox_div {
         position: relative;
         padding-left: 25px;
         /* 5px distance from the text */
     }
     #ct100_searchbox_textbox {
         display: block;
         width: 98%;
         padding: 2px 1%;
     }
     #ct100_searchbox_link {
         position: absolute;
         left: 5px;
         top: 5px;
         width: 20px;
     }