CSS: Help with Background Gradient

I need the Background Gradient colors to be applied and fixed at 100% of the screen and not at 100% of the page.

Save my life, guys.

Can you post the code that’s giving you trouble?

body {
  background: linear-gradient(to top, #141414, #333333);
}

I want to make that to be applied 100% of the screen, not 100% of the page.

1 Like

try this :

  body{
  background: linear-gradient(to top, #141414, #333333);
  height: 100%;
  width: 100%;
}

I’m not too good at HTML and CSS but maybe try.

background-size: cover; 

Good luck!