I have an Agular 2 app and on the homepage I want to change the background color on the body tag. Each page has it's own component, but since the body tag is outside app-root I can't add a class to it. Any suggestions on how to do this?
Asked
Active
Viewed 385 times
0
-
Possible duplicate of [Angular2 add class to body tag](https://stackoverflow.com/questions/43542373/angular2-add-class-to-body-tag) – Gabriele Petrioli Nov 29 '17 at 23:42
-
I couldnt get that to work, so I just used plain javascript to add a class document.body.className += " homepage-background"; – CaptainMorgan Nov 30 '17 at 00:13