gpt4 book ai didi

html - Firefox 中的 Flexbox 图像过冲

转载 作者:太空宇宙 更新时间:2023-11-04 08:46:25 25 4
gpt4 key购买 nike

我的目标是必须有 2 列内容垂直居中。一个只是一个动态图像 - 需要限制在它的 div - 一个只是文本。也不允许溢出。

我的代码在 Chrome 中运行没有问题,但 Firefox 将图像大小设置得太高,我完全不知道为什么会这样。

希望有人能帮我解决这个问题。已经在这个问题上浪费了时间。

谢谢大家!

jsFiddle

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>

最佳答案

主要问题似乎是您对百分比高度的使用。

不同的浏览器呈现不同的百分比高度,这取决于父元素是否有定义的高度。

通常,max-heightmin-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>

revised fiddle

这是一个可能也适用于您的简化版本:

.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>

revised fiddle

更多信息:

关于html - Firefox 中的 Flexbox 图像过冲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43746777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com