I am trying to use this template to achieve vertical alignment with Flexbox inside Bootstrap 3 columns. But in Firefox I get strange results with responsive images. They get height too big, out of proportion, more than 100%. You can check this JSFiddle in Firefox (35).
CSS
.vertical-align {
display: flex;
flex-direction: row;
}
.vertical-align > [class^="col-"],
.vertical-align > [class*=" col-"] {
display: flex;
align-items: center; /* Align the flex-items vertically */
justify-content: center; /* Optional, to align inner flex-items
horizontally within the column */
}
HTML
<div class="container">
<div class="row vertical-align">
<div class="col-xs-6">
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary,</p>
</div>
<div class="col-xs-6">
<img src="http://placehold.it/1400x1000" class="img-responsive" />
</div>
</div>
</div>
Any ideas how to fix this problem?