I am using bootstrap thumbnail class to display a list of players as shown in photo below. The problem some player names exceed a single line and go for a second line which do not make the same dimension for thumbnails. And the real problem I faced is the wrong positioning of the thumbnails as seen in the second row in the photo. How can I fix it? Here is the code:
<div class="row">
<div ng-repeat="player in $ctrl.players">
<div class="col-sm-4 col-md-3">
<div class="thumbnail">
<img ng-src="{{player.imgpath}}" height="100" width="121" alt="" style="border-radius: 100%"/>
<div class="caption">
<h4><span class="badge">{{player.jersey}}</span> {{player.name}}</h4>
<table class="table">
<tr>
<td><b>Position</b></td>
<td>{{player.position}}</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>