두 개의 img 태그를 서로 중첩 시키려고하지만 둘 다 가운데에 놓으려고합니다. http://nathanturnbull.me/scrolldiv/home.html두 개의 img 태그를 중앙에 배치하는 방법
html로 : 메신저가 일을하려고 여기 어디에
이다
<div id="divs" class="div1">
<div class="textcont">
<img class="imglogo" src="gpk.gif" alt="GPK NET">
<div class="textcont" >
<img class="imgbutton" src="gpk.gif">
</div>
</div>
</div>
는 CSS :
#divs, #div4 {
height: 100%;
width: 100%;
overflow: hidden;
background-size: cover;
font-family: 'Cousine';
font-size: 80px;
color: #ffffff;
text-align: center;
}
.div1 {
display: table;
}
.textcont {
display: table-cell;
vertical-align: middle;
background-color: transparent;
}
.imgbutton {
height: 42px;
width: 84px;
}
이 작업을 수행하지만 지금은 이미지가 아니라 중간에있는 것보다 페이지 상단에 앉아있다. 이 문제를 어떻게 해결할 수 있습니까? – user3533841