我的目标是拥有2列垂直居中的内容。一个只是一个动态图像 - 需要限制在它的div - 一个只是文本。 也不允许溢出。
我的代码在Chrome中运行没有问题,但Firefox将图像大小设置得太高,我没有丝毫知道为什么会这样做。
希望有人能帮助我解决这个问题。这个问题已经浪费了几个小时。
谢谢你们!
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
.Grid {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
.Grid-cell {
flex: 1;
-webkit-flex: 1;
-moz-box-flex: 1;
-ms-flexbox: 1;
-moz-box: 1;
}
.Grid--top {
align-items: flex-start;
height: 90%;
}
.Grid-cell--center {
align-self: center;
}
.Grid-cell--image {
text-align: center;
max-height: 100%;
}
.u-1of3,
.u-2of3 {
-webkit-flex: 0;
-moz-box-flex: 0;
flex: 0 0 auto;
}
.u-1of3 {
width: 35%;
}
.productImages {
height: 80%;
}

<body>
<div class="Grid Grid--top">
<div class="Grid-cell Grid-cell--center Grid-cell--image">
<div id="productImages">
<img id="productImage0" class="productImages" src="http://placehold.it/450x1550" />
</div>
</div>
<div class="Grid-cell Grid-cell--center u-1of3">
2. Section
</div>
</div>
</body>
&#13;
答案 0 :(得分:1)
主要问题似乎是您使用百分比高度。
不同的浏览器以不同的方式呈现百分比高度,具体取决于父元素是否具有已定义的高度。
通常,max-height
和min-height
属性在DOM中进一步应用于元素的百分比高度时效果不佳。
通过对代码中的百分比高度进行一些调整,布局似乎可以正常工作。
html {
height: 100%;
}
body {
height: 100%;
margin: 0px;
padding: 0px;
}
.Grid {
display: flex;
align-items: center;
justify-content: center;
}
.Grid-cell {
flex: 1;
}
.Grid--top {
align-items: flex-start;
height: 100%;
}
.Grid-cell--center {
align-self: center;
}
.Grid-cell--image {
text-align: center;
height: 100%;
}
.u-1of3, .u-2of3 {
flex: 0 0 auto;
}
.u-1of3 {
width: 35%;
}
#productImages {
height: 100%;
}
.productImages {
max-height: 100%;
}
<div class="Grid Grid--top">
<div class="Grid-cell Grid-cell--center Grid-cell--image">
<div id="productImages">
<img id="productImage0" class="productImages" src="http://placehold.it/450x1550" />
</div>
</div>
<div class="Grid-cell Grid-cell--center u-1of3">
2. Section
</div>
</div>
这是一个可能适合您的简化版本:
.Grid {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.productImages {
max-height: 100vh;
}
body {
margin: 0px;
}
* {
box-sizing: border-box;
}
<div class="Grid Grid--top">
<div class="Grid-cell Grid-cell--center Grid-cell--image">
<div id="productImages">
<img id="productImage0" class="productImages" src="http://placehold.it/450x1550" />
</div>
</div>
<div class="Grid-cell Grid-cell--center u-1of3">
2. Section
</div>
</div>
更多信息: