为单独的页面自定义正文的背景色

时间:2018-11-09 16:25:13

标签: css angular typescript angular5

因此,我正在使用角度5,并且尝试自定义主页正文的背景颜色,但不允许将该颜色传递到下一页。

使用ng-deep,我有点用它来工作,因为如果用户刷新页面,它将起作用。因此,如何停止将白色的主体颜色传递到下一页并显示灰色,而不必刷新页面

预先感谢

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式从组件中访问它:

 export class HomePageComponent implements AfterViewInit {

   constructor(private elementRef: ElementRef){}

   ngAfterViewInit(){
     this.elementRef.nativeElement.ownerDocument.body.style.backgroundColor = 'red';
   }
 }