Answers for "gradient styles css"

CSS
8

css horizontal gradient background color

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

css gradient background

body
{
    width: 100%; 
    height: 100vh;
    color: #fff;
    background-image: linear-gradient(180deg, #581845, #900C3F, #C70039, #FF5733, #FFC300);
}

/* If scrollbars are appearing you can disable them by just typing*/

::-webkit-scrollbar
{
    display: none;
}
Posted by: Guest on September-18-2021

Browse Popular Code Answers by Language