Home > Enterprise >  Input is offset when changing text size next to it
Input is offset when changing text size next to it

Time:01-20

Not sure why but whenever I change the links next to my search bar on my nav menu, For some reason the input gets slightly moved down. I'm not sure how to explain it....

  @import url('https://fonts.googleapis.com/css2?family=Open Sans:wght@500&display=swap');
  body {
  margin: 0px;
}
.top-nav-bar {
  background-color: #292929;
  height: 55px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #DDDDEB;
  font-size: 50px;
}
.spacer {
  margin: 5px;
  display: inline;
  cursor: help;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #597BEB;
}
.searchbar {
  font-size: 16px;
  border-width: 2px;
  border-color: #CCCCCC;
  background-color: inherit;
  border-style: solid;
  border-radius: 50px;
  width: 150px;
  height: 50px;
}
<div >
  <a href="#">Home</a>
  <div ></div>
  <a href="#">Profile</a>
  <div ></div>
  <input  type="text" placeholder="Search">
  <div ></div>
</div>

CodePudding user response:

How about using vertical-align:top;?

  @import url('https://fonts.googleapis.com/css2?family=Open Sans:wght@500&display=swap');
  body {
  margin: 0px;
}
.top-nav-bar {
  background-color: #292929;
  height: 55px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #DDDDEB;
  font-size: 50px;
}
.spacer {
  margin: 5px;
  display: inline;
  cursor: help;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #597BEB;
}
.searchbar {
  font-size: 16px;
  border-width: 2px;
  border-color: #CCCCCC;
  background-color: inherit;
  border-style: solid;
  border-radius: 50px;
  width: 150px;
  height: 50px;
  vertical-align:top;
}
<div >
  <a href="#">Home</a>
  <div ></div>
  <a href="#">Profile</a>
  <div ></div>
  <input  type="text" placeholder="Search">
  <div ></div>
</div>

  •  Tags:  
  • Related