Answers for "how to apply linear gradient in body"

CSS
0

top down gradient css on body

html{
    height:100%;
    background: linear-gradient(0deg, white, blue 80%) no-repeat;
}
Posted by: Guest on August-21-2021
1

html css background linear-gradient

background: linear-gradient(#333, #333 50%, #eee 100%);
\\code for a basic gradient background
   #grad {
  background-image: linear-gradient(red, yellow);
}
Posted by: Guest on October-26-2020

Code answers related to "how to apply linear gradient in body"

Browse Popular Code Answers by Language