div 태그에 다음 CSS를 적용했다고 가정 해 보겠습니다.
.divtagABS {
position: absolute;
margin-left: auto;
margin-right:auto;
}
margin-left 및 margin-right가 적용되지 않습니다.
그러나 친척이 있으면 잘 작동합니다.
,divtagREL {
position: relative;
margin-left: auto;
margin-right:auto;
}
왜 그런 겁니까? 요소를 중앙에 배치하고 싶습니다.
누군가 절대 위치에서 여백을 자동으로 설정하는 것이 작동하지 않는 이유를 설명 할 수 있습니까?
margin: auto;
. 절대 위치를 사용하면 다른 모든 스타일 요소 (위치 등 관련)는 무시됩니다.