I am currently working on formatting images in AngularJS to display them next to each other in rows of four. However, it seems like when the code is generated from Angular, it is not displaying as expected. Below is a snippet of my HTML:
<span ng-repeat="x in r.selectedImageUri">
<div style="width:25%;position:inline-block;">
<img ng-src="{{x}}" width="100%" alt="image" style="">
<div><button class="button button-assertive" style="width:100%;">Delete</button></div>
</div>
</span>
Additionally, I have provided a screenshot for reference:
If anyone has any suggestions or solutions, I would greatly appreciate it. Thank you.