코딩/CSS / / 2022. 10. 31. 14:40

display-flex 지정상태에서 중앙정렬하는법

justify-content를 사용해주면된다 

.input-type{
            display: flex;
            flex-wrap: nowrap;
            text-align: center;}
# display:flex 상태에서 text-align:center 을 하게되면 중앙정렬이되지않는다

.input-type{
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;}
            # justify-content 를 사용해주면된다

 

  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유