我需要容器宽度最小高度以保持可变大小的内容,但同时我需要在父容器内垂直对齐内容。
JS小提琴: http://jsfiddle.net/mr_goodcat/n5Pq3/6/
HTML:
<table class="mainLayout">
<tr>
<td>
<div class="contentLayout">
<div class="tbl">
<div class="tcell">
<div class="inner">
CONTENT
</div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
BOTTOM
</td>
</tr>
</table>
CSS:
body, html {
background-color: lightgreen;
height: 100%;
width: 100%;
}
.mainLayout {
height: 100%;
width: 100%;
}
.contentLayout {
width: 100%;
min-height: 200px;
border: 1px solid red;
display: block;
}
.tbl {
height: 100%;
width: 100%;
display: table;
}
.tcell {
width: 100%;
height: 100%;
background: purple;
display: table-cell;
text-align: center;
vertical-align: middle;
}
.inner {
display: inline-block;
}
想要将红色方框对齐红色方块(min-height containter)。我该怎么做?
答案 0 :(得分:2)
试试这个http://jsfiddle.net/n5Pq3/30/这是webkit的一个已知问题。解决方法是使用
position:relative; //on parent
position:absolute; // on child
想了解更多细节,请点击此链接... https://bugs.webkit.org/show_bug.cgi?id=26559