javascrpit
todo-app 2
todo-app 2
2021.01.11TodoTemplate.scss .TodoTemplate { width: 512px; // width 가 주어진 상태에서 좌우 중앙 정렬 margin-left: auto; margin-right: auto; margin-top: 6rem; border-radius: 4px; overflow: hidden; } .app-title { background: #22b8cf; color: white; height: 4rem; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; } .content { background: white; } 레이아웃을 할 때 flex라는 display 속성을 자주 쓸 텐데요 코드에 있는 주석을..