Bonjour,
Voilà je suis débutant en html/css et je suis bloqué sur mon premier projet au niveau d’une image de fond qui ne veut pas remplir la section entière.
Voici mon code CSS:
*{
margin: 0;
padding: 0;
}
@font-face {
font-family: 'qintounregular';
src: url('./fonts/qintoun-webfont.woff2') format('woff2'),
url('./fonts/qintoun-webfont.woff') format('woff'),
url('./fonts/qintoun.ttf');
font-weight: normal;
font-style: normal;
}
h1{
color: rgba(110,57,255,0.5);
font-size: 24px;
font-family: qintounregular;
}
h2{
color: black;
}
h3{
color: black;
}
a{
color: white;
padding: 20px;
}
a:hover{
color: red;
}
section{
background: url('images/fond.jpg');
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
nav{
background: rgba(0,0,0,0.5);
text-align: center;
padding: 20px;
}
#bandeau{
margin-top: 10%; /*la propriété margin permet d'espacer les DIV entre elles*/
margin-bottom: 10%;
background-color: rgba(255,255,255,0.5);
}
#contenu{
text-align: center;
padding: 2%;
}
la partie du code section me semble, j’imagine, celle qui pose problème. Le résultat est que j’ai un bandeau blanc sous a DIV #bandeau alors que c’est censé être encore l’image de fond à cette emplacement.
Merci de votre aide.
+0
-0