要为Angular 8中的Angular Element(自定义网络组件)样式化,可以按照以下步骤进行:
ng new angular-element-styling
cd angular-element-styling
ng generate component my-element
ViewEncapsulation
和Component
:import { Component, ViewEncapsulation } from '@angular/core';
ViewEncapsulation
为ViewEncapsulation.ShadowDom
:@Component({
selector: 'app-my-element',
templateUrl: './my-element.component.html',
styleUrls: ['./my-element.component.css'],
encapsulation: ViewEncapsulation.ShadowDom
})
:host {
display: block;
background-color: #f2f2f2;
padding: 20px;
border: 1px solid #ccc;
}
h2 {
color: #333;
}
@Component({
// ...
styleUrls: ['./my-element.component.css'],
// ...
})
ng serve
现在,你将看到一个具有自定义样式的Angular Element(自定义网络组件)被呈现在浏览器中。
注意:在使用Shadow DOM样式封装模式时,组件的样式将不会影响到其它组件。如果你希望样式在整个应用程序中起作用,可以选择使用ViewEncapsulation.None
。