【发布时间】:2017-05-20 20:34:11
【问题描述】:
我正在使用显示表格和表格单元格垂直对齐中间来使 div 居中对齐。但中心 div 不位于中心。
小提琴:Here
CSS:
.landing-right {
position: relative;
padding: 50px 0px;
float: left;
display: table;
width: 365px;
height: 100%;
margin-left: -70px;
}
.landing-img {
height: 420px;
position: relative;
float: left;
width: 100%;
background-repeat: no-repeat;
border: 15px solid #fff;
display: table-cell;
vertical-align: middle;
}
HTML:
<div class="landing-right">
<div class="landing-img" style="background-image: url("https://cdn.filestackcontent.com/Cvj2tN3S7ikTu981vJVp");">
</div>
【问题讨论】: