div 안의 내용을 수평으로 수직으로 가운데에 놓다
9044 단어 수직 가운데
<!DOCTYPE HTML>
<html>
<head>
<title>test</title>
<meta charset="utf-8">
<style>
#demo{
width:300px;
height:300px;
position: relative;
background-color: #ff6600;
}
#indemo{
width:100px;
height:100px;
position: absolute;
left:0;right:0;top:0;bottom:0;
margin:auto;
background-color: white;
}
</style>
</head>
<body>
<div id = 'demo'>
<div id = 'indemo'></div>
</div>
</body>
</html>
시나리오 2(이 시나리오는 indemo의 너비와 높이를 알고 있어야 함):
#demo{
width:300px;
height:300px;
position: relative;
background-color: #ff6600;
}
#indemo{
width:100px;
height:100px;
position: absolute;
left:50%;
top:50%;
margin-left: -50px;
margin-top: -50px;
background-color: white;
}
시나리오 3(포지셔닝 사용 안 함):
#demo{
width:300px;
height:300px;
display: table-cell;
vertical-align: middle;
background-color: #ff6600;
}
#indemo{
width:100px;
height:100px;
margin:0 auto;
background-color: white;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
수직 가운데 맞춤텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.