2월 5일 (금) 2월 6일 (토)

프로젝트 메인 페이지 만들다

Posted by Yan on February 6, 2021

오늘 배운 것

모든 요소를 컴포넌트로 만들어서 재활용할 수 있다.

1
2
3
4
5
6
7
8
9
10
11
12
export const InfoRow = styled.div`
  display: grid;
  grid-auto-columns: minmax(auto, 1fr);
  align-items: center;
  grid-template-areas: ${({ imgStart }) =>
    imgStart ? `'col2 col1'` : `'col1 col2'`};

  @media screen and (max-width: 768px) {
    grid-template-areas: ${({ imgStart }) =>
      imgStart ? `'col1' 'col2'` : `'col1 col1' 'col2 col1'`};
  }
`;
  • css그리드에 대해서 배웠다.