Inflearn brand logo image

Inflearn Community Q&A

crawlingrabbit's profile image
crawlingrabbit

asked

Everything You Need to Know About CSS3 for Intermediate to Advanced Publishing

All About CSS Centering (position, flex, grid, vertical-align, transform, place-items)

margin: auto;

Written on

·

346

1

6분 20초 쯤에 margin: auto;가 등장했는데요.

margin: auto;를 했을 때 상하좌우가 아니라 좌우 마진만 정렬되는 이유가 무엇인가요.. 

HTML/CSS

Answer 1

0

codingworks님의 프로필 이미지
codingworks
Instructor

웹 규격을 정하는 https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height에서 보시면... 온통 영어라서 꼭 보실필요는 없습니다. 그냥 그렇게 정해져 있구나 라고 하고 넘어가셔야 하는 부분입니다.

If 'margin-top', or 'margin-bottom' are 'auto', their used value is 0. 

위의 내용을 해석하면 마진 상단 또는 마진 하단이 'auto'인 경우, 실제로 갖는 값은 0이다.

crawlingrabbit님의 프로필 이미지
crawlingrabbit
Questioner

감사합니다!

crawlingrabbit's profile image
crawlingrabbit

asked

Ask a question