[ margin : 0 auto Not Working ]
float를 썼을 때
width 값을 지정하지 않았을 때
inline 요소일 때
display : inline-block => 요소가 inline 성질을 갖게 되어 => margin:auto 대신 text-align:center
참고 사이트 : https://ssongjjii.tistory.com/21
.class {
position: fixed;
left: 50%;
transform: translate(-50%, 0);
}
위와 같이, 먼저 상위 element 기준 좌측에서 우측으로 50% 이동하고(left:50%), 다음으로 x축 방향(왼쪽)으로 50% 이동하여 중앙정렬 된다.