Angular는 부모 컴포넌트의 템플릿 일부를 자식 컴포넌트 템플릿에 넣을 수 있다. import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { NgModule, Component, ViewEncapsulation } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; @Component({ selector : 'child', styles : ['.wrapper { background : lightgreen; }'], template : ` Child This div is defined in the child's temp..