"DIV 세로 중앙 정렬"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 19개는 보이지 않습니다)
1번째 줄: 1번째 줄:
;DIV 세로 가운데 정렬
;DIV 세로 정렬 중간
;DIV vertical-align middle


==소스 코드==
==예시1: flex ★==
<source lang='html5'>
<syntaxhighlight lang='html' run outheight='300'>
<!DOCTYPE html>
<style>
<meta charset="utf-8" />
  .box1 {
<title>테이블 DIV 세로 중앙</title>
    width: 100px; height: 100px;
    background: orange;
  }
  .box2 {
    height: 50px;
    background: lightgreen;
  }
  .box3 {
    height: 80px;
    background: skyblue;
    text-align:center;
  }
  .middle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
</style>
 
<div class="box1 middle">박스1</div>
<div class="box2 middle">박스2<br>안녕하세요</div>
<div class="box3 middle">박스2<br>안녕하세요</div>
</syntaxhighlight>
 
==예시2: line-height==
* 텍스트가 한줄일 경우만 가능하다.
<syntaxhighlight lang='html' run outheight='350'>
<style>
div {
width: 200px;
  height: 50px;
line-height: 50px;
margin: 10px;
text-align: center;
}
.box-a { background-color: red; }
.box-helloworld { background-color: orange; }
.box-multiline { background-color: yellow; }
</style>
 
<div class='box-a'>A</div>
<div class='box-helloworld'>Hello, World!</div>
<div class='box-multiline'>multiple<br>line</div>
</syntaxhighlight>
 
==예시3: img 이용==
<syntaxhighlight lang='html'>
<style>
<style>
.div1 {height:200px;float:left;background:#aaa;}
.div1 {height:200px;float:left;background:#aaa;}
19번째 줄: 68번째 줄:
<div class='div2'><img class='img3'/><span>middle</span></div>
<div class='div2'><img class='img3'/><span>middle</span></div>
<div class='div4'><img class='img4'/><span>bottom</span></div>
<div class='div4'><img class='img4'/><span>bottom</span></div>
</source>
</syntaxhighlight>
*예제: http://jmnote.com/css/div_middle.php
<jsfiddle height='250'>zwrL8prr</jsfiddle>


==같이 보기==
==같이 보기==
*[[TD 세로 중앙]]
*[[TD 세로 중앙]]
*[[HTML div]]


[[분류:CSS]]
[[분류:CSS]]
[[분류:HTML]]
[[분류:HTML div]]
[[분류:DIV]]

2021년 6월 11일 (금) 20:00 기준 최신판

DIV 세로 가운데 정렬
DIV 세로 정렬 중간
DIV vertical-align middle

1 예시1: flex ★[ | ]

<style>
  .box1 {
    width: 100px; height: 100px;
    background: orange;
  }
  .box2 {
    height: 50px;
    background: lightgreen;
  }
  .box3 {
    height: 80px;
    background: skyblue;
    text-align:center;
  }
  .middle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
</style>

<div class="box1 middle">박스1</div>
<div class="box2 middle">박스2<br>안녕하세요</div>
<div class="box3 middle">박스2<br>안녕하세요</div>

2 예시2: line-height[ | ]

  • 텍스트가 한줄일 경우만 가능하다.
<style>
div {
	width: 200px;
  height: 50px;
	line-height: 50px;
	margin: 10px;
	text-align: center;
}
.box-a { background-color: red; }
.box-helloworld { background-color: orange; }
.box-multiline { background-color: yellow; }
</style>

<div class='box-a'>A</div>
<div class='box-helloworld'>Hello, World!</div>
<div class='box-multiline'>multiple<br>line</div>

3 예시3: img 이용[ | ]

<style>
.div1 {height:200px;float:left;background:#aaa;}
.div2 {height:200px;float:left;background:#bbb;}
.div3 {height:200px;float:left;background:#ccc;}
.div4 {height:200px;float:left;background:#ddd;}
.img1 {height:200px;width:0;}
.img2 {height:200px;width:0;vertical-align:top}
.img3 {height:200px;width:0;vertical-align:middle}
.img4 {height:200px;width:0;vertical-align:bottom}
</style>
<div class='div1'><img class='img1'/><span>(기본값)</span></div>
<div class='div3'><img class='img2'/><span>top</span></div>
<div class='div2'><img class='img3'/><span>middle</span></div>
<div class='div4'><img class='img4'/><span>bottom</span></div>

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}