본문 바로가기
CSS

fixed position의 element를 화면 중앙에 배치하기

by ttum 2020. 5. 3.

css file

.centering {
  positioin: fixed;
  margin: 0 auto; // vertical centering
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

'CSS' 카테고리의 다른 글

CSS 우선순위 (Cascade)  (0) 2020.03.24
CSS의 단위  (0) 2020.01.10
[CSS] 마진 겹침/ 상쇄(margin collapsing)  (0) 2020.01.08
[CSS] Box model (박스 모델)  (0) 2020.01.08