Home > Article > Web Front-end > How to add style classes to component tags using Angular5
This time I will show you how to use Angular5 to add style classes to component labels. What are the precautions for using Angular5 to add style classes to component labels? The following is a practical case, let's take a look.
There are two ways to add styles to the tags of the component itself in Angular 5:
Method 1: Use the host attribute of @Component
@Component({ selector : 'myComponent', host : { '[style.color]' : "'red'", '[style.background-color]' : 'backgroundColor' } }) class MyComponent { backgroundColor: string; constructor() { this.backgroundColor = 'blue'; } }
In Adding attributes in the host configuration is equivalent to the usage of binding attributes on labels.
Set style:
'[style.color]': "'red'": Note that there is a single quote inside the double quotes of the red value.
'[style.background-color]':'backgroundColor': This refers to the variable backgroundColor in the component.
The advantage of this method is that you can use component variables in styles.
Set class:
@Component({ selector : 'myComponent', host : { '[class.myclass]' : 'showMyClass' } }) class MyComponent { showMyClass = false; constructor() { } toggleMyClass() { this.showMyClass = !this.showMyClass; } }
Method 2: Use: host selector in the style
@Component({ selector : 'myComponent', styles : [` :host { color: red; background-color: blue; } `] }) class MyComponent {}
I believe you have mastered the method after reading the case in this article , for more exciting content, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to correctly use the vuex project structure directory and configuration
The above is the detailed content of How to add style classes to component tags using Angular5. For more information, please follow other related articles on the PHP Chinese website!