1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
html { height: 100%; } body { height: 100%; margin: 0; background-repeat: no-repeat; background-attachment: fixed; background: blue; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(left, #0C7CD0 , #5ABDF4); background: -o-linear-gradient(right,#0C7CD0, #5ABDF4); background: -moz-linear-gradient(right, #0C7CD0, #5ABDF4); background: linear-gradient(to right, #0C7CD0 , #5ABDF4); } |
