TIL 26. 가운데 정렬 모음
Block || Inline 요소를 가운데 정렬하는 방법을 아는데로 모아보았다.
- Margin
main {
margin: 0 auto;
width: 300px;
}
- Display:
div {
display: flex;
flex-direction: column;
align-items: center; //column일땐 가로축 가운데정렬은 align-items 사용.
}
div {
display: flex;
justify-content: center; //row일때 가로축 가운데정렬
}
- text-align
.test {
text-align: center; //글씨 또는 인라인 요소 가운데 정렬
}
- Position
const MainText = styled.section`
position: absolute;
top: 140px;
left: 50%;
transform: translateX(-50%); //여기서 X=가로축의미
`;
Author And Source
이 문제에 관하여(TIL 26. 가운데 정렬 모음), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@seod0209/TIL-26.-가운데-정렬-모음저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)