Answers for "linear gradient as background color 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
8

css horizontal gradient background color

.foo {
	background-image: linear-gradient(red, blue);
}
Posted by: Guest on March-06-2020

Code answers related to "linear gradient as background color in body"

Browse Popular Code Answers by Language