Inflearn brand logo image

Inflearn Community Q&A

insung9405538's profile image
insung9405538

asked

Bite-sized React.js: From Basics to Practice

12.7) Implementing Common Components

Header css justify-content 질문

Resolved

Written on

·

218

·

Edited

0

.Header .header_center { 
  justify-content: center;
}

.Header .header_left { 
  justify-content: flex-start;
}

.Header .header_right { 
  justify-content: flex-end;
}
.Header { 
  justify-content: space-between; 
}

이렇게 해도 같은 결과가 나오는데 두 코드 차이점이 있을까요?

javascriptreactnode.js

Answer 1

0

winterlood님의 프로필 이미지
winterlood
Instructor

안녕하세요 이정환입니다.

두 방식에는 큰 차이는 없습니다 😃

보여지는 부분이 동일하다면 어떤 방식으로 하셔도 상관 없습니다.

insung9405538님의 프로필 이미지
insung9405538
Questioner

아하 그렇군요

insung9405538님의 프로필 이미지
insung9405538
Questioner

new 페이지 구현하기에서 스타일링이 어긋나네요..

title 부분만 position: absolute로 띄우고 위치값 잡아줘야겠네요.

insung9405538's profile image
insung9405538

asked

Ask a question