I am displaying each item from my array as an HTML paragraph using the ng-repeat
directive.
<p ng-repeat="item in queries track by $index">{{ item }}</p>
The output looks like this:
------------ title 1 --------------
content 1
------------ title 2 --------------
content 2
------------ title 3 --------------
content 3
------------ title 4 --------------
content 4
However, I'm struggling to find a way to apply custom styles to these paragraphs (e.g. color:red;
).