Each Angular 2 Component can have its own styles which will remained contained inside the component. These isolated styles allow you to add whichever styles you want without worrying about them leaking out and affecting the rest of your application.
[00:00] Now if I add styles to my widget 1 component, I'll just do it like this, styles is an array of strings. I'll just add this selector of everything which should select every single element and say font family Times New Roman. When I hit save, it should change everything inside of the widget to Times New Roman.
[00:23] Here's our one widget. Here's the other instance of it. You'll see that it did not impact this at all. Even though this widget is inside of the home component, these divs were not impacted by the styles I defined inside of my widget.
[00:39] You may have noticed before if I delete this and hit save, that these styles are Arial by default. That's coming from a style sheet which I have declared globally to styles.css. The only thing in there is a font family of Arial.
[00:57] That's used inside of my index HTML right here. These global styles are being applied across my application. If I declare a style inside of my widget itself, those styles stay confined inside of this widget, and they do not leak out, but they can inherit from global styles.
[01:15] If we want to style the widget itself, by that I mean if I look in the elements, go into body, app, home, widget one, we have this element called widget-1, you might try and do a selector of widget 1. I'll hit save and I'll see if that works. You'll see that we're still getting that font family of Arial.
[01:39] Even though this selector and this element named match, it's not able to apply this style to it because it's looking for this selector inside of the template. If you want to style the entire element, there's a special selector called host, meaning host is the host of the template. That's going to be that widget 1 where I can style this entire widget.
[02:06] A super important thing to point out is if I try and add a border, something like three pixels dashed black, I'll hit save, you would think it would add a dashed border around this widget and around this widget, but you can see it just looks like a rendering error or something.
[02:26] That's because these do not have a default display added to them. If I want a block display, I would need to say display block, meaning it's not going to inherit the display block from a parent component.
[02:40] Since all of these styles are isolate, you would either have to do block or flex or the others as your display. I'll just add block. Now you'll see that this border that we applied before or created before is now applied to this element and this element.
[02:56] To see what's going on inside of the DOM, if you look at body app home widget 1, you'll see we now have this ng host attribute on here which has a unique ID attached to it. From the special ID, Angular's going to go in and create this style.
[03:14] If you go in the head and the style, it's going to create this attribute selector that looks up that special ID and adds those CSS properties that you added to your host element. There won't be any conflicts because Angular manages these unique IDs, creates these styles, and looks them up and applies them.
[03:36] That way, any style you create inside of your widget will only be applied to the template of your widget.
Member comments are a way for members to communicate, interact, and ask questions about a lesson.
The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io
Be on-Topic
Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.
Avoid meta-discussion
Code Problems?
Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context
Details and Context
Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!