일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- php
- 해피CGI
- #이미지
- #image
- 홈페이지제작
- 솔루션
- #웹솔루션
- 웹솔루션
- 홈페이지
- #해피CGI
- 게시판
- happycgi
- jquery
- 사이트제작
- #jQuery
- #홈페이지
- CGIMALL
- #동영상
- #CSS
- 해피씨지아이
- #홈페이지제작
- #솔루션
- #쇼핑몰
- 쇼핑몰
- #cgimall
- #업종별
- CSS
- javascript
- #happycgi
- #뉴스
- Today
- Total
웹솔루션개발 22년 노하우! 해피CGI의 모든것
[해피CGI][cgimall] 빈영역에 세로 및 가운데 정렬 tip 본문
빈영역에 div를 위치시킬때 컨텐츠를 세로 및 중앙 정렬을 할 수 있는 팁입니다.
영역내에 빈 div 공간을 위치 시킴으로써 출력하기 위한 블럭의
vertical-align:값 을 조정하여 컨텐츠 내용을 상하로 조절할 수 있습니다.
그리고 background영역의 text-align을 조정하여 좌우 정렬을 조정할 수 있습니다.
HTML
<div class="background">
<div class="inner_block"></div>
<div class="align contents">내용</div>
</div>
CSS
.background{position:absolute; top:0; left:0; bottom:0; right:0; width:100%; height:100%; text-align:center; }
.background .inner_block{display:inline-block; *display:inline; *zoom:1; width:0; height:100%; vertical-align:middle; border:1px solid green}
.background .align{display:inline-block;*display:inline;*zoom:1; vertical-align:middle; }
.contents{width:300px;height:200px;background:none;border:1px dashed red;}
영역내에 빈 div 공간을 위치 시킴으로써 출력하기 위한 블럭의
vertical-align:값 을 조정하여 컨텐츠 내용을 상하로 조절할 수 있습니다.
그리고 background영역의 text-align을 조정하여 좌우 정렬을 조정할 수 있습니다.
HTML
<div class="background">
<div class="inner_block"></div>
<div class="align contents">내용</div>
</div>
CSS
.background{position:absolute; top:0; left:0; bottom:0; right:0; width:100%; height:100%; text-align:center; }
.background .inner_block{display:inline-block; *display:inline; *zoom:1; width:0; height:100%; vertical-align:middle; border:1px solid green}
.background .align{display:inline-block;*display:inline;*zoom:1; vertical-align:middle; }
.contents{width:300px;height:200px;background:none;border:1px dashed red;}
50%로 정렬을 하여 크기의 절반만큼 -값으로 미는방법도 있지만 위와같은 방법도 있으니 참고하시길 바랍니다.
충분히 유용한 팁이라고 생각이 됩니다.
'웹프로그램밍 자료실 > HTML 자료' 카테고리의 다른 글
[해피CGI][cgimall] IOS 코딩 시 유용 팁 (회전시 폰트 사이즈 조절 및 webkit) (0) | 2019.02.20 |
---|---|
[해피CGI][cgimall] box - shadow 효과로 개체에 그림자 넣기 (0) | 2019.02.19 |
[해피CGI][cgimall] CSS에서 웹페이지 전체에 스타일을 적용하는 (*) 표시 (0) | 2018.12.04 |
[해피CGI][cgimall] 동적인 가로, 세로값 계산을 위한 clac CSS (0) | 2018.11.14 |
[해피CGI][cgimall] HTML5의 "Video" 태그 사용하기 (0) | 2018.10.22 |
Comments