I have been attempting to center a search bar inside a top banner vertically. My understanding was that the following code could achieve this:
#banner {
height: 35px;
width: 100%;
}
#searchbar {
height: 15px;
position: relative;
top: 50%;
margin-top: -7.5px; /* half of the height */
}
However, when I add the margin-top
, it affects the #banner
as well.
Is there an alternative method to accomplish vertical centering, or am I making a mistake?