Angular - Components
Given this Angular component snippet, what will be the background color of the
Assuming
div when rendered?@Component({
selector: 'app-box',
styles: [`div { background-color: red; }`],
styleUrls: ['./box.component.css']
})
export class BoxComponent {}Assuming
box.component.css contains div { background-color: blue; }