I have encountered a strange issue with a bootstrap grid layout. Here is the relevant code snippet:
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-sm-6 col-sm-offset-2">
<img src="<?PHP echo _ROOT;?>/public/images/startpage/customer_large.jpg" class="img-responsive"/>
</div>
<div class="quote_right col-xs-10 col-xs-offset-1 col-sm-2 col-sm-offset-0">
<p class="text-center">
‹‹Das Geheimnis des Erfolgs ist, den Standpunkt des anderen zu verstehen.››
</p>
<p class="text-center">
<span class="speaker">Henry Ford</span>
</p>
</div>
</div>
When viewing the content on the webpage, you can see it here: https://i.sstatic.net/VtINF.jpg
This situation raises two questions:
- Why does the last div container appear wider than the others, especially since they all contain images with the img-responsive class?
- Is there a way to ensure that the last div matches the height of the one on the left?
Your insights and suggestions are greatly appreciated!