: airbnb를 클론코딩 해보면서 바닐라 자바스크립트로 할 수 있는 것들을 토대로 html, css, js를 복습한다는 방향으로 공부해보자.
: 먼저 위의 카테고리 header를 구현해보자.
display: flex;
align-items: center;
justify-content: center;
를 사용했었는데, 더 약간의 보일러 플레이트(?)를 줄여주는 place-items
를 알았다.
display: flex;
place-items: center;
혹은
display: grid;
place-items: center;
위의 place-items
는 align-items, justify-content를 하나의 속성으로 설정해줄 때 쓰는거다. 예를 들어,
place-items: end center;
이렇게 해주면 앞은 align-items를 end로 한거고, 뒤는 justify-content를 center로 한거다.
const arr = Array.from({length:9}, (v,i)=>i+1));