FrontendDeveloper.in

Angular question detail

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';
}
Back to all Angular questions
Get LinkedIn Premium at Rs 399