I'm currently playing around with the Riot Games API, I'm using bootstrap to manage the grid of "Champions" these images are loaded from Riot's imagebase but some (4-5) are 1px lower than the rest.
This breaks the grid, and since the images change height based on screen width I can't set a height to fix it, I'd rather not use JS or jQuery to calculate a height for every image on every width change, so I'm wondering if anyone have a slick fix for this with css or bootstrap classes alone.
The page is www.mathias-syversen.net
<div class="row">
<?php foreach ($champs as $champ) { ?>
<div id="id-<?php echo $champ[id] ?>" class="champion col-xs-6 col-sm-4 col-md-3 col-lg-2">
<div class="thumbnail">
<a href="/page/champion.php?id=<?php echo $champ[id] ?>">
<img src="http://ddragon.leagueoflegends.com/cdn/img/champion/loading/<?php echo $champ[key] ?>_0.jpg" alt="<?php echo $champ[name] ?>">
<div class="name-tag"><?php echo $champ[name] ?></div>
</a>
</div>
</div>
<?php } ?>
</div>