Skip to content

Instantly share code, notes, and snippets.

@x3r0s
Last active December 14, 2021 04:32
Show Gist options
  • Save x3r0s/830eff591948f2ea898c7f5ad11102be to your computer and use it in GitHub Desktop.
Save x3r0s/830eff591948f2ea898c7f5ad11102be to your computer and use it in GitHub Desktop.
center css
/* 부모 밑의 자식 div를 부모의 전체넓이를 기준으로 중앙정렬 할 때 */
.target {
position: relative;
top: 50%;
left: 50%;
margin: 0 0 0 -480px;
width: 960px;
}
/* 콘텐츠 컨테이너 영역을 정렬할 때 사용함 */
body {
width: 100%;
height: 100%;
}
.target {
width: 960px;
margin: 0 auto;
}
/* 이미지를 가운데 정렬 시킬 경우 */
img {
display: block;
margin: 0px auto;
}
/* position, transform 사용 예제 */
target {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment