gpt4 book ai didi

css - z-index 在 Chrome 中工作......而不是在 Firefox 中......?

转载 作者:行者123 更新时间:2023-11-28 18:43:42 25 4
gpt4 key购买 nike

看看http://www.amordetango.nl/txp/ ... 在 Mac 上 Chrome 运行良好。 Firefox 不显示 h1 和 h2 ...!?

这里需要一点帮助!

这三个元素的代码有些复杂,因为 h1 和 h2 必须居中,h2 必须稍微在 h1 之上……看看 Chrome,你就会明白我的意思了。

hgroup 
{
position: relative;
text-align: center; /* to center h1 en h2 */
z-index: 1;
}

h1
{
font-family: 'BebasNeueRegular', sans-serif;
color: #fff;
line-height: 100%;
font-weight: normal;
text-transform: uppercase;
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
margin-top: -50%; /* half the height */
margin-left: -50%; /* half the width */
z-index: 2;
letter-spacing: 0.15em;
padding-left: 0.15em; /* to compensate letter-spacing h1 */
}

h2
{
font-family: 'MutluOrnamental', sans-serif;
line-height: 100%;
font-weight: normal;
color: #b7b7b7;
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
margin-top: -50%; /* half the height */
margin-left: -50%; /* half the width */
z-index: 3;
padding-top: 10px; /* !important > to make h2 fit in relation to h1 */
}

/* for all browser including all IE! */
h2 {
opacity: 0.75;
zoom: 1;
filter: alpha(opacity=75);
}

最佳答案

Firefox 似乎正确地解释了 z-index。相反,问题在于 margin-top: -50% 在 h1 和 h2 上,这将它们移出了视线。

关于css - z-index 在 Chrome 中工作......而不是在 Firefox 中......?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10963782/

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