CSS 중심 맞추기 방법 요약

3142 단어
CSS 수평 및 수직 가운데 맞춤은 개발에서 자주 사용되며 여기서 요약할 수 있습니다.
수평 가운데 맞춤법
1. 행내 원소의 수평은 가운데이고 부원소의 text-align: center을 설정합니다.
center
#box {
  text-align: center;
}

자주 사용하는 인라인 요소는 a, abbr, b, br, em, input, label, select, span, strong, sub, sup, textarea 등이다.
2. 폭이 고정된 블록급 원소는 수평으로 가운데에 위치하고 이 원소의 margin: 0 auto을 설정한다.
center
#box {
  width: 64%;
  margin: 0 auto;
}

자주 사용하는 블록급 요소는 address, article, audio, blockquote, canvas, div, footer, form, h1, header, hr, ol, output, p, pre, section, table, ul 등이다.
3. 절대 포지셔닝 원소의 수평은 가운데에 있고 부원소 video을 설정하고 이 원소 position: relative을 설정한다.
center
#box {
  position: relative;
 }
#content {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

4.flex 레이아웃은 수평으로 가운데에 있고 부모 요소 left: 0; right: 0; margin: 0 auto;을 설정합니다.
center
#box {
  display: flex;
  justify-content: center;
}

수직 가운데 맞춤법
1. 한 줄의 텍스트는 수직으로 가운데에 위치하고 이 요소 display: flex; justify-content: center을 부모 요소 line-height의 높이로 설정합니다.
center
#content {
  height: 2em;
  line-height: 2em;
}

2. 부모 요소를 표 height으로 표시하고 display: table-cell을 이용하여 수직 가운데로 설정합니다.
center
#box {
  display: table-cell;
  vertical-align: middle;
 }

3. 이 원소를 절대적으로 포지셔닝하고 부원소 vertical-align: middle, 이 원소 positoin: relative을 설정한다.
center
#box {
  position: relative;
 }
#content {
  position: absolute;
  top: 0;
  bottom: 0;
  marigin: auto;
}

4. 절대 포지셔닝 고정 고도는 top:0; bottom: 0; margin: auto;10top: 50%을 높이 값의 절반으로 설정한다.
center
#box {
  position: relative;
 }
#content {
  position: absolute;
  height: 12em;
  top: 50%;
  margin-top: 6em;
}

5.flex 레이아웃, 부모 요소 설정 margin-top
center
#box {
  display: flex; 
  align-items: center;
 }

좋은 웹페이지 즐겨찾기