I am attempting to showcase three images in the same row
Here is the code I am using:
<div ng-repeat="p in imageses">
<div class="col-sm-4" >
<img ng-src="{{p.path}}" class="rounded"/>
</div>
</div>
Currently, this code only displays one image per line. I would like to modify it to show three images per line.