Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Struggling to vertical center content Reply To: Struggling to vertical center content

#206466
Shikkediel
Participant

I think I’d go with absolute positioning in this case :

.navbar-right {
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}

This rule is inside the min-width: 768px media query.