Tema Aire

¿Entonces quieres que no haya un área gris que invada la imagen de fondo?

Si es así, usarías el mismo código anterior, pero unset la propiedad 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;

¡Esto en realidad se ve muy bien con tu imagen!

8 Me gusta