Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
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
more
Archives
Today
Total
관리 메뉴

름름

블록요소내 세로 정렬 본문

Tip

블록요소내 세로 정렬

름름_ 2017. 9. 16. 01:46

1. padding


- 부모박스의 높이가 제한적이지 않을경우.


#box {width:500px; border:3px solid #ccc;}

.al {padding:30px; text-align: center;}




<div id="box">

<p class="al">vertical-align: middle</p>

</div>




2. line-height


 - 부모요소의 높이가 제한되어 있고, 한줄일경우


#box {

width:500px; height:60px;

line-height: 60px;

border:3px solid #ccc; 

text-align: center; 

   }




<div id="box">

<p>vertical-align: middle</p>

</div>



 - 부모요소의 높이가 제한되어 있고, 여러줄일 경우


#box {

width:500px; height:60px;

line-height: 60px; 

border:3px solid #ccc; 

text-align: center;

}


p {

text-align: center; 

display: inline-block; 

vertical-align: middle;  

line-height: 1.5;

}




<div id="box">

<p>In this example, we use the line-height property with a value that is equal to the height property to center the div element</p>

</div>




3. position & transform


- 부모요소의 높이가 제한되어 있고 다른 요소들이 position값에 영향을 받지 않을경우


#box {

width: 500px; height: 200px; 

position: relative; 

border: 3px solid #ccc; 

text-align: center;

}


.al {

margin: 0; 

position: absolute; top: 50%; left: 50%;

transform: translateX(-50%) translateY(-50%);

}




<div id="box">

<p class="al">vertical-align: middle</p>

</div>



'Tip' 카테고리의 다른 글

img 마우스 오버시 테두리 안쪽으로 주기  (0) 2017.09.14
div안의 img에 높이4px공백  (0) 2017.09.13
inline요소 vs block요소  (0) 2017.09.12
폼태그 input 에서 id와 name  (0) 2017.01.13
글자생략 코드  (0) 2016.12.19
Comments