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 를 사용해주면된다
'코딩 > CSS' 카테고리의 다른 글
css 에서 height가 짤려서 나올시 (0) | 2022.10.30 |
---|---|
css 글자 색깔 굵게 (0) | 2022.10.18 |
html 글자 색깔, 배경색깔 변경 (0) | 2022.10.18 |
html 에 css 파일 링크 걸기 (0) | 2022.10.14 |
CSS-미디어쿼리(Media Query)페이지 크기별 보이게하기 (0) | 2022.10.12 |