Reputation: 598
I am trying to get a linear gradient of 2 colours but it is not working and instead showing me alternate lines of different colors as seen in the image
I am using this css
body{ background: linear-gradient(white, rgb(221,221,221));}
This is the complete jsfiddle
Upvotes: 0
Views: 332
Reputation: 10037
Just add height:768px;
in css .
http://jsfiddle.net/arshidkv12/78cx3/1/
Upvotes: 2