2012. 10. 15. 15:59

[CSS] 이미지 세로 가운데 정렬

div.thumb {
background: #eee;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
}
div.thumb:after {
content: " ";
margin-left: -0.6em;
white-space: pre;
}
div.thumb img {
vertical-align: middle;
}


<div class="thumb"> <img src=http://img.jpg alt=""> </div>

 

 

width와 height 이미지에 맞게 조정

사용가능 브라우저 : IE8 이상, 사파리,파이어폭스

출처 : http://blog.naver.com/PostView.nhn?blogId=2z00&logNo=140165679377