1

I'm using Bootstrap and trying to position these 3 images at the bottom without any success. Could you help?

JSFIDDEL

HTML:

<div class="row">
<div class="col-xs-2">
  <img src="https://s10.postimg.org/730mt4y5l/image.jpg" class="img-responsive first">
</div>
<div class="col-xs-8">
  <img src="https://s10.postimg.org/yp3edthih/image.jpg" class="img-responsive second">
</div>
<div class="col-xs-2">
  <img src="https://s10.postimg.org/z4j9kkstl/image.jpg" class="img-responsive third">
</div>
</div>

CSS:

.row {
  border-bottom: 1px solid red;
  position: relative;
}
.first {

}
.second {

}
.third {

}

The 3 images are of different dimensions. I would like to position them in such a way that all the images seat on the red border line.

Elaine Byene
  • 3,868
  • 12
  • 50
  • 96

1 Answers1

0

For now, I only see to regulate with margin_top or padding_top, and responsive regulate with media switch.

style='margin_top:150px;'
b2ok
  • 544
  • 6
  • 13