Home [CSS] 반응형 코드 이쁘게 작성하기
Post
Cancel

[CSS] 반응형 코드 이쁘게 작성하기

css 반응형 코드를 이쁘게 작성하기!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 반응형을 위한 브레이크 포인트(width)

const breakpoints = [768, 1200];

// 각 요소를 미디어문으로 변경
export const media = breakpoints.map((bp) => `@media (max-width: ${bp}px)`);

// 실제 적용하기
// 필요한 breakpoint 를 가져다 쓰면 된다.
export const InputWrapper = styled.div`
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vh;

  ${media[1]} {
    width: 100%;
  }
`;

참조

없음.

This post is licensed under CC BY 4.0 by the author.

[Git][Error] Git 사용중 branch가 꼬였을때

[JS][Method] 스케줄링 호출(setTimeout)