I'm new to HTML and CSS and I have a problem. I'm working on responsive design and where I have a media screen
of min-width 860px
. I want my navigation text to be next to my logo. I managed to do this, but the navigation text is placed on top of my line instead of in the center.
.netflix-logo {
float:left;
margin-right: 18px;
}
nav a {
display:inline;
vertical-align: middle;
color: white;
margin: 9px 8px 0 0;
text-decoration: none;
}
I tried working with vertical-align: middle
and center but that didn't work either, could you please help me?