How to create angular directive code example
Example 1: user defined directives in angular 7
import { Directive, ElementRef } from '@angular/core';
Example 2: user defined directives in angular 7
<p [ngStyle]="{`THE CSS YOPU WANT TO ADD`}"> I am an Attribute Directive</p>
Example 3: change specific element style angular directive
content_copy
ng generate directive highlight