Recently, I've been working on some HTML code that utilizes the Angular Material library:
<div layout="row" layout-wrap style="background: yellow; ">
<div ng-repeat="pro in Products" >
<md-card class="cardProduct" >
<img ng-src={{pro.Image1}} class="md-card-image imageProduct">
</md-card>
</div>
</div>
Upon implementation, I noticed that the alignment is not as desired. Specifically, I am looking to center align the content and have the fourth image displayed on the left rather than in the center.
Thank you for any assistance provided.