vertical align & center box(수직 중앙 정렬)
요소 중앙 정렬(수직정렬)요소를 중앙(센터) 정렬하는 방법에는 여러가지가 있습니다.가령, 가장 잘 알려진 line-height 로 중앙정렬을 시키는 방법은 text/image 가 single line 일 경우에만 가능하다는 단점이 있습니다. 그리고 위의 그림과 같은 position: absolute 를 이용하는 방법(demo)과 display: table-cell 을 이용하는 방법이 있습니다. table-cell 은 다음과 같이 많이 사용합니다. Unknown stuff to be centered. .something-semantic { display: table; width: 100%; } .something-else-semantic { display: table-cell; text-align: cen..