L
L
ligisayan2016-10-19 13:30:49
css
ligisayan, 2016-10-19 13:30:49

How to properly align items to vertical center in bootstrap menu?

Hello! There is a classic menu with a brand logo on bootstrap. Fiddle For the current size of the logo image - the size by design should be 88px. How to make it so that, regardless of the size of the logo, it is aligned with the menu in the vertical center every time (with similar indents) and at the same time be cross-browser ie9+ ? The use of padding, marging, line-height, position:absolute in this case is bad form. I tried wrapping with a combination of table table-cell vervical-align middle , but for some reason it doesn't work.. How to be?

.navbar {
  height: 88px;
}

<div class="navbar navbar-inverse">
  <div class="container">
    <!-- Header -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">
        <img src="http://placehold.it/66x61">Bootstrap 3 Skeleton
      </a>
    </div>
    <!-- Navbar Links -->
    <div class="collapse navbar-collapse">
      <ul class="nav navbar-nav">
        <li class="active"><a href="#">Home</a>
        </li>
        <li><a href="#about">About</a>
        </li>
        <li><a href="#contact">Contact</a>
        </li>
      </ul>
    </div>
  </div>
</div>

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
DTX, 2016-10-19
@ligisayan

Okay, I'll save you
jsfiddle.net/kcpma/793

M
Mikhail Osher, 2016-10-19
@miraage

flex

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question