Style html,body from web component (Angular 2)

前端 未结 10 1816
南笙
南笙 2020-12-03 00:39

I\'m working on a LoginComponent in Angular 2 that should \"restyle\" the html and body tags, so I can put in a background image speci

10条回答
  •  爱一瞬间的悲伤
    2020-12-03 01:18

    I had same issue with margin-top , the way I fixed is

    constructor(
        private _renderer: Renderer2,
    ) {
        this._renderer.removeStyle(document.body, 'margin-top');
    }
    

    This worked perfectly for me.

提交回复
热议问题