-
[CSS] 레이어 중앙 정렬 (ie7 ~)HTML & CSS 2018. 11. 21. 17:24
// 레이어 배경
.layer_popup {
z-index: 100;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
background-color: rgba(0, 0, 0, 0.2);
// 중앙 배치되는 내용
.content {
display: inline-block;
vertical-align: middle;
}
// 중앙으로 받쳐주는 가상 요소
&:after {
display: inline-block;
content: '';
width: 0;
height: 100%;
vertical-align: middle;
}
}'HTML & CSS' 카테고리의 다른 글
[CSS] select 박스 화살표 지우기 (0) 2018.11.21 [CSS] input placeholder color (0) 2018.11.21 [CSS] counter 사용 (0) 2018.11.21 [CSS] 요소 개수별로 속성 적용 (0) 2018.11.21 [SASS] for문 활용 (0) 2018.11.21