Property Binding

  • Flows data from the component to an element
  • Created with brackets <img [src]=”image.src” />
  • There are special cases for binding to attributes, classes and styles that look like [attr.property], [class.className], and [style.styleName]respectively
<textarea [value]="postBody"></textarea>
<span [style.color]="componentStyle">Some colored text!</span

Backlinks