#Stop image scrolling - just show dark grey if scrolled down far enough

4 messages · Page 1 of 1 (latest)

brittle sequoia
#

like this?

#
body {
    background: linear-gradient(
        to bottom,
        transparent 0%,                    /* Transparent at the top */
        rgba(8, 18, 28, 0.8) 50%,          /* Mid-transition at 50% */
        #08121c 75%,                       /* Solid #08121c starts at 75% */
        #08121c 100%                       /* Solid #08121c continues to 100% */
    ),
    url(img url);
    background-repeat: no-repeat;
    background-size: cover;                /* Ensure the image covers the container */
    background-color:#08121c;
}```
#

cant it wants me to log in :P

brittle sequoia
#

🤔 does background-size: 100vw 100vh; make a difference