如何使用CSS在div內水平居中div?我正在嘗試,我得到它從左側和右側居中,但我不能從頂部和底部居中。CSS居中DIV包含其他DIV
html {
height:100%;
}
body {
padding:0px;
margin: 0px;
height:100%;
}
#openFrame {
position:fixed;
top:0px;
width:100%;
left:0%;
height:100%;
}
.main {
position: absolute;
width: 80%;
max-height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
#vid {
width:100%;
max-height:100%;
vertical-align: middle;
}
#bottom {
width:100%;
height:69px;
background-color: green;
background-repeat: no-repeat;
background-position: top center;
background-size: contain;
}
可能重複[如何垂直居中一個div所有的瀏覽器?(http://stackoverflow.com/questions/396145/how-to-vertically-center-a-div -for-all-browsers) –
https://jsfiddle.net/ozgul/epm4y8jy/請參閱預覽 – Blair