코딩/CSS
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 를 사용해주면된다
2022. 10. 31. 14:40