Hello. Faced the problem of displaying the values of an array of objects in a row. Here is a sample code:
<div id="catBlock"> <div ng-style="catBlock" ng-repeat="cat in list | orderBy: 'id' "> <img width="120px" height="150px" src='{{cat.imgPath}}' title="{{cat.name}}"/> </div> </div> </div> $scope.catBlock = { "display": "inline", "clear": "both", "border": "1px solid #666666", "background": "#555555", "width": "165px", "height": "210px" }; The output is standard in the column 
What needs to be done in order to display a list in a row, not in a column? Thanks in advance for your reply.
PS / There is an assumption that this cannot be solved with regular CSS and will probably have to be perpetrated with repeat and if.