div를 중앙에 배치하는 가장 간단한 방법
2562 단어 htmlcssproductivitywebdev
그래서 저는 div를 중앙에 배치하는 가장 멋지고 쉬운 방법을 가지고 왔습니다.
그래서 여기에 html 코드가 있습니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<div id="parentContainer">
<div id="childContainer"></div>
</div>
</body>
</html>
I have made two divs in the body. One is with id parentContainer and the other one is childContainer.
Let me share you the css code.
#parentContainer{
width: 400px;
height: 400px;
background-color: brown;
}
#childContainer{
width: 100px;
height: 100px;
background-color: black;
}
단순히 높이 400px, 너비 400px, background-color 갈색을 parentContainer에 지정했습니다.
마찬가지로 높이 100px, 너비 100px, background-color black을 childContainer에 지정했습니다.
우리 div는 아직 중앙에 위치하지 않았습니다. 보여드리겠습니다.
CSS의 Position 속성은 요소가 페이지에 배치되는 방식을 설정하는 데 사용됩니다. 위치 요소의 기본값은 정적입니다. 위치 요소의 다른 값은 상대, 절대, 고정 및 고정입니다.
이제 position: absolute; DOM 요소에 대해서는 전체 페이지에 대해 절대적이 됩니다. 전체 페이지와 관련하여 div를 중앙에 배치하려는 경우에 유용합니다.
반면 위치 지정: 상대; 전체 페이지가 아닌 상위 요소와 관련된 하위 요소(위치: 절대;)를 절대값으로 만듭니다.
이제 top: 0;, left: 0;, bottom: 0; 그리고 오른쪽: 0;, 여백 포함: auto; 컨테이너에 요소를 배치하고 div를 중앙에 배치합니다.
#parentContainer{
position: relative;
width: 400px;
height: 400px;
background-color: brown;
}
#childContainer{
position: absolute;
width: 100px;
height: 100px;
background-color: black;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
}
축하합니다. div를 가운데로 설정했습니다.
Reference
이 문제에 관하여(div를 중앙에 배치하는 가장 간단한 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/usamajamil67/simplest-way-to-center-a-div-85i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)