Angular - Components
Given this component code:
What color will the paragraph text be in the browser?
@Component({
selector: 'app-test',
template: `Hello
`,
styles: ['.text { color: red; }'],
encapsulation: ViewEncapsulation.None
})
export class TestComponent {}What color will the paragraph text be in the browser?
