인프런 커뮤니티 질문&답변

slow님의 프로필 이미지

작성한 질문수

비전공자를 위한 진짜 입문 올인원 개발 부트캠프

[그랩마켓] 웹 화면 구현하기 - 1

flex로 가운데 정렬을 하고 싶은데 어디를 수정해야 하나요?

작성

·

155

1

html
<html>
  <head>
    <title>market</title>
    <link href="index.css" type="text/css" rel="stylesheet" />
    <script></script>
  </head>
  <body>
    <div id="header"></div>

    <div id="parent">

      <div id="body">
        <div id="banner">배너이미지</div>
        <h1>판매되는 상품들</h1>
        <div id="productlist"></div>
      </div>
     
    </div>

    <div id="footer"></div>
  </body>
</html>
css
#header {
  height: 64px;
  background-color: black;
}
#parant {
  display: flex;
  flex-direction: row;
}

#body {
  justify-content: center;
  width: 1024;
  height: 100%;
  background-color: blue;
}

#footer {
  height: 200px;
  background-color: red;
}
#banner {
  height: 300px;
  background-color: yellow;
}
부모를 만들고 body를 자식으로 넣고
부모에 display:flex를 적용
자식인 body에 justifiy-content:center를 적용했는데
생각처럼 작동을 안해요... 어디서 수정을 해야 할까요?
 
 
 

답변 2

2

부모에 justifiy-content:center 을 줘야 자식에게 적용되는거 아닌가요??

slow님의 프로필 이미지
slow
질문자

구원자... 감사합니다 ㅠㅠ

0

그랩님의 프로필 이미지
그랩
지식공유자

지훈님께서 잘 답변해주셨네요! 감사합니다 :)

slow님의 프로필 이미지

작성한 질문수

질문하기