728x90 가운데 정렬1 [CSS]div안에 div를 가운데에 정렬하는 방법 보통 div에서 글을 가운데에 정렬하고 싶은 경우가 많은데 두개의 div를 사용하면 쉽게 중앙에 정렬할 수 있다. # 방법 1) 자식 div에 inline-block을 사용하면 된다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 .div-parent { width:100%; text-align: center; padding:30px; background-color: darkgray; } .div-child { display:inline-block; text-align: center; width:50%; height:200px; background-color: white; } 결과 화면 >> # 방법 2) 부모 div에 display:table을 설정하고.. 2019. 4. 11. 이전 1 다음 728x90