Answers for "ngstyle conditional angular 8"

5

conditional style angular

<div [ngStyle]="{'color':employee.country === 'India' ? 'orange' : 'red' }"></<div>
Posted by: Guest on October-18-2020
6

ngstyle

<div [ngStyle]="{'background-color':person.country === 'UK' ? 'green' : 'red' }"></<div>
Posted by: Guest on August-08-2020
0

ngstyle

content_copy
      
      <some-element [ngStyle]="{'max-width.px': widthExp}">...</some-element>
Posted by: Guest on October-26-2020
1

ngstyle conditional

<div [ngClass]="{'class1': true, 'class2': false}"></div> <!--passed as an object-->
Posted by: Guest on January-04-2021

Browse Popular Code Answers by Language