List

토요일, 5월 07, 2016

CSS - div내의 img를 중앙 정렬하기


  • position을 absolute로 주고 margin을 auto로...

1
2
3
4
5
6
7
8
9
div#visor-progress-circle img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
cs

댓글 없음:

댓글 쓰기