Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 팝업
- Transform
- relative
- html5
- css3
- tag
- script
- Semantic tag
- Semantic
- 시맨틱 태그
- 가상 클래스
- jQuery
- googlechart
- window.open
- JavaScript
- 툴팁
- 가상 요소
- 깜박임
- HTML
- jQuery UI
- 새창열기
- 구글차트
- absolute
- onclick
- window open
- 태그
- translate
- position
- 시맨틱
- 페이지 이동
Archives
- Today
- Total
무아지경
display:table 을 이용한 가로/세로 가운데 정렬 본문
display:table / display:table-cell 을 이용한 가로/세로 가운데 정렬
1 2 3 4 5 6 7 8 9 | <style> .display_table { display:table; width:200px; height:200px; border:2px solid #6d82f3;} .display_table_cell { display:table-cell; text-align:center; vertical-align:middle; } </style> <div class="display_table"> <div class="display_table_cell">가운데 정렬</div> </div> | cs |
가운데
전체를 감싸고 있는 div에 display:table;를 입력하고
가운데 정렬 하려는 div에 display:table-cell; vertical-align:middle;를 입력하면 된다.
display:table / display:table-cell 에 대한 설명 보러가기 게시글 보기
'퍼블리싱 > HTML5 + CSS3' 카테고리의 다른 글
[CSS] div안에서 가로/세로 가운데 정렬 (0) | 2018.07.16 |
---|---|
대문자/소문자 변경 text-transform, font-variant (0) | 2018.07.13 |
display:table / display:table-cell 속성 (0) | 2018.07.13 |
a링크 #none / javascript:void(0) (0) | 2018.07.13 |
window.open() 팝업창 띄우기 (0) | 2018.07.05 |
Comments