0

Will someone please help

enter image description here

 <form action="#" class="search-bar">
                <div>
                    <button type="submit" name="Submit" id="submit"><img src="/search.png" alt="Search"
                            height="35px"></button>
                    <input type="text" placeholder="Search" id="search">

                </div>

            </form>
Anatoly
  • 10,157
  • 3
  • 13
  • 28

1 Answers1

0

add Flexbox like this....

if the below code doesn't give you expected result based on what png file you have, remove "align-items: center;" and try again,.

  <form action="#" class="search-bar">
  <div style="display: flex; align-items: center;">
    <button type="submit" name="Submit" id="submit">
      <img src="/search.png" alt="Search" height="35px" />
    </button>
    <input type="text" placeholder="Search" id="search" />
  </div>
</form>
hussain
  • 110
  • 10