728x90 div 정렬1 [CSS] div 가운데 정렬방법 ( 가로, 세로 / 수직, 수평) 1. 가로(수직) 가운데 정렬 (block) - margin-left와 margin-right를 auto로 설정하면 가로로 가운데 정렬할 수 있다. 1 2 3 4 5 6 7 8 9 10 11 12 .div-center { display: block; margin-left: auto; margin-right: auto; background-color: burlywood; text-align: center; } dev-syhy 결과화면 >> 2. 가로(수평) 가운데 정렬 (inline-block) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 .div-parent { text-align: center; background-color: coral; text-align: center.. 2019. 4. 11. 이전 1 다음 728x90