The following code is used to display boxes on my site:
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<div class="services-wrapper">
<i class="ion-android-time"></i>
<h3>Text header</h3>
Sample text
</div>
</div>
and the following CSS is applied:
#services .services-wrapper {
padding: 20px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin-bottom: 40px;
background-color: rgba(255, 255, 255, 0.07);
cursor: pointer;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
I can not understand why 2 of 6 boxes are aligned incorrectly on medium(?)-size displays like iPad (btw, is there any way to have boxes of the same height, but still responsive?):