Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
563 views
in Technique[技术] by (71.8m points)

angular - How can I change styles of component in different places?

I have component, that is only used in app.component.html. This footer exists on all pages. I want to change background-color of it on component. Styles of footer are in footer.component.css. So how can I do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

On footer.component.css you have the original color.

If you use the footer (component name: my-footer) on app.component like this:

<my-footer></my-footer>

You can add on app.component.css some css to override the original color

my-footer ... {
    background-color: red
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...