Home › Forums › CSS › Struggling to vertical center content › Reply To: Struggling to vertical center content
August 12, 2015 at 10:31 pm
#206466
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.