NgStyle Directive

    1. @Component({
    2. template: `
    3. <p style="padding: 1rem"
    4. [ngStyle]="alertStyles">
    5. </p>
    6. `
    7. })
    8. borderStyle = '1px solid black';
    9. alertStyles = {
    10. 'color': 'red',
    11. 'font-weight': 'bold',
    12. 'borderBottom': this.borderStyle
    13. };