Create pages with Angular Create pages with Angular 1 Create child components I could add a child component to top-page component like below. ng g component top-page/product-ranking product-ranking folder was made under the top-page folder. src L app L top-page L product-ranking L product-ranking.component.css ... Base size I thought, the important thing was the base size of component was affected by the parent component. Although there had been some parent elements, the child component's size ignored them. For example, I generated two components on the same directory, and made parent-child relationship by HTML template. src L app L top-page L product-ranking // component L product-ranking-block // component L product-cell // component product-ranking.component.html <div id="product-ranking-area"> <div id="product-ranking-frame"> <div id=...