gpt4 book ai didi

html - 英雄形象不适用于 mozilla

转载 作者:行者123 更新时间:2023-11-28 04:57:53 24 4
gpt4 key购买 nike

我的英雄形象适用于所有浏览器,但不适用于 Mozilla,我不确定为什么会这样,因为我使用的是一些通常适用于我的非常标准的代码。

这是我的完整背景标题图片的 CSS:

  display: table;
width: 100%;
min-height: 100vh;
height:100vh;
padding: 100px 0;
text-align: center;
color: white;
background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;

这是现场直播:http://www.conlamochilaalhombro.com

非常感谢!

最佳答案

简单的解决方案

.intro 中删除 height: 100%;

替代方案

» 只是展示另一种居中文本/内容的方式。

去掉 .introp 上的 display: table;.intro-body< 上的 display: table-cell;/。然后居中 .intro-body 像这样:

.introp {
position: relative;
}
.intro-body {
position: absolute;
top: 50%;
left: 50%;
transform: translate( -50%, -50% );
}

关于html - 英雄形象不适用于 mozilla,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40289560/

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