gpt4 book ai didi

html - 我的
了解我的介绍背景

转载 作者:行者123 更新时间:2023-11-28 06:12:46 25 4
gpt4 key购买 nike

我被困在我的网站开发中......我想添加一个 <article>在我的<header>之后其中包含全屏背景介绍,但该部分堆叠在我的 <div> 之上即使它在我的标题和我的文章中 <body> .我看到了Full screen image background on header但没有解决我的问题...

这是我的代码:

CSS

body{
margin:0;
}
.intro{
height: 100%;
width: 100%;
/*background-size: cover;*/

}
.text-intro{
padding-top: 10%;
padding-left: 5%;
}
.bg{
position:absolute;
z-index:-1;
width:100%;
height:100%;

}
h1{
font-family: 'Montserrat', sans-serif;
font-size: 42px;
color: white;
margin-top: 0;
margin-bottom: 0;
}
article h2{
color: white;
}
header h2{
font-family: 'Montserrat', sans-serif;
font-size: 28px;
font-weight: 400;
color: white;
opacity: 0.3;
margin-top: 7px;
margin-bottom: 7px;
}
.btn-intro a{
display: block;
font-size: 35px;
margin-top: 45px;
font-family: 'Montserrat', sans-serif;
text-decoration: none;
color: #FFEA00;
border: solid #FFEA00 2px;
width: 379px;
padding: 21px;
-o-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;

}
.btn-intro a:hover{
display: block;
font-size: 35px;
margin-top: 45px;
font-family: 'Montserrat', sans-serif;
text-decoration: none;
color: black;
background-color: #FFEA00;
border: solid #FFEA00 2px;
width: 379px;
padding: 21px;
-o-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
}
.social img{
width: 25px;
height: 25px;
padding-right: 5px;
}
article{
position: relative;
}

html

<body>
<header>
<div class="intro">
<img class="bg" src="images/bg-intro.png">
<div class="text-intro">
<div class="social">
<a href="https://www.facebook.com/WarexStudio"><img src="images/facebook.svg" alt="Facebook"></a>
<a href="https://www.twitter.com/KoenigTheo"><img src="images/twitter.svg" alt="Twitter"></a>
</div>
<h2>Portraits des membres du groupe A1</h2>
<h1>Theo Koenig</h1>
<h2>MMi Montbéliard</h2>
<div class="btn-intro">
<a href="">VOIR LES PORTRAITS</a>
</div>
</div>
</div>
</header>
<article>
<h2>Groupe de TP A1</h2>
</article>
</body>

最佳答案

试试这个。

    .text-intro{
position: absolute;
z-index: 1;
top: 0;
left: 0;
}

在那之后尝试使用“top”和“left”值来获得你想要的位置来代替你之前声明中的填充。

关于html - 我的 <article> 了解我的介绍背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36062828/

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