I have below few classes that has to applied to a div in *ngFor
as shown below:
<div class="row">
<ng-container *ngFor="let item of tripTiles">
<div class="col-lg-3 col-md-6">
<div class="panel panel-primary">
...
</div>
</div>
<ng-container>
</div>
I have classes like panel panel-primary
, panel panel-green
, panel panel-red
and panel panel-yellow
how can i dynamically assign these classes.
Can i get any help or idea?..