确保在app.module中导入FormsModule和ReactiveFormsModule。
在angular.json文件中的assets数组中添加以下代码:
{
"glob": "**/*",
"input": "src/assets/",
"output": "/assets/"
}
import { ViewEncapsulation } from '@angular/core';
:host {
position: absolute;
width: 100%;
height: 100%;
background-color: #f9f9f9;
}
这将确保选择器应用于组件本身。
@Component({
selector: 'app-component',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None
})
这将确保全局样式应用于组件。
如果您遇到的问题是CSS权重问题,请查看选择器权重,并确保正确使用! important。
如果您使用的是第三方UI库,请查看其自定义文档以获得更多信息。