Vous souhaitez qu’il n’y ait pas de zone grise empiétant sur l’image d’arrière-plan ?
Si c’est le cas, vous utiliseriez le même code ci-dessus, mais vous désactiveriez la propriété clip-path.
html .background-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background: url(https://d11a6trkgmumsb.cloudfront.net/original/3X/8/3/8352b68….jpeg);
background-size: cover;
clip-path: unset;
Cela rend vraiment bien avec votre image !
