Answers for "css gradient body 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
7

linear-gradient

background: linear-gradient(to left, #333, #333 50%, #eee 100%);
Posted by: Guest on April-01-2020

Code answers related to "css gradient body background"

Browse Popular Code Answers by Language