How can I vertically align my images in center of a div? What I have right now is looks like this:
As you can see the last image is correctly centered vertically, I want to place my other two images in same manner as 3rd image. My code:
<!-- container -->
<div class="container">
<div class="banner-text">
<h3>Services</h3>
<p>Ut mollis rhoncus porttitor. Nulla facilisi. Nulla eget est fringilla, malesuada ligula non, scelerisque enim. Fusce dui ex, accumsan at viverra nec, suscipit eget tortor.</p>
</div>
<div class="banner-bottom-grids">
<div class="col-md-4 banner-bottom-grid">
<div class="services-icon">
<span ><img src="images/nomobile1.png" aria-hidden="true" /></span>
</div>
<h4>Aliquam nulla mauris</h4>
<p>Lorem Ipsum is simply Ipsum has been the industry's text of the printing and typesetting industry. </p>
</div>
<div class="col-md-4 banner-bottom-grid red">
<div class="services-icon">
<span ><img src="images/remind1.png" aria-hidden="true" /></span>
</div>
<h4>Mauris pellentesque</h4>
<p>Lorem Ipsum is simply Ipsum has been the industry's text of the printing and typesetting industry. </p>
</div>
<div class="col-md-4 banner-bottom-grid green">
<div class="services-icon">
<span class="glyphicon glyphicon-th-large glyphicon-thumbs-up" aria-hidden="true"></span>
</div>
<h4>Praesent vitae quam</h4>
<p>Lorem Ipsum is simply Ipsum has been the industry's text of the printing and typesetting industry. </p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<!-- //container -->
Aliquam nulla mauris
Lorem Ipsum is simply Ipsum has been the industry's text of the printing and typesetting industry.