How do you select an element in component template?

You can control any DOM element via ElementRef by injecting it into your component's constructor. i.e, The component should have constructor with ElementRef parameter,

constructor(myElement: ElementRef) {
el.nativeElement.style.backgroundColor = 'yellow';
}

July 25, 2022
84