“estilo en línea condicional angular” Código de respuesta

estilo condicional angular

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

estilo en línea condicional angular

// 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

Respuestas similares a “estilo en línea condicional angular”

Preguntas similares a “estilo en línea condicional angular”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código