Angular - Components
Given this Angular component code:
What will be the color of all elements with class
@Component({
selector: 'app-box',
template: `Hello`,
styles: [`.box { color: red; }`],
encapsulation: ViewEncapsulation.None
})
export class BoxComponent {}What will be the color of all elements with class
box in the entire app?