Answers for "css body gradient background"

CSS
0

css color gradient background full height

html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
Posted by: Guest on February-11-2020
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

how to put background gradient css

.element {
  background: linear-gradient(
  #FF0000 /*Colour 1*/
  #00FFFF /*Colour 2*/
  );
}

/*Linear Gradient (Popular)*/
  
  
.element {
  background: radial-gradient(
  #FF0000 /*Colour 1*/
  #00FFFF /*Colour 2*/
  );
}

/*Radial Gradient*/
Posted by: Guest on August-04-2021

Code answers related to "css body gradient background"

Browse Popular Code Answers by Language