“Warunkowy kąt w stylu wbudowanym” Kod odpowiedzi

Warunkowy styl kątowy

<div [ngStyle]="{'color':employee.country === 'India' ? 'orange' : 'red' }"></<div>
Grieving Gharial

Warunkowy kąt w stylu wbudowanym

// ngStyle (conditional Style)
<div *ngFor='let [data] of [dataArray]; let i=index;'>
  <h2 [style.background]="i>1? 'green': 'red'"> {{i}} {{data.title}} </h2>

  </div> 

//if the index of the element is 1 or 0, the background will be red, if it is over 1 the background will be green
Grieving Gharial

Odpowiedzi podobne do “Warunkowy kąt w stylu wbudowanym”

Pytania podobne do “Warunkowy kąt w stylu wbudowanym”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu