html - Issues rendering a gradient background in chrome? -
body { background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #787878 100%); } i'm getting kind of effect when want true gradient, of course. ideas?
you make work properly, need:
body, html { background: -webkit-linear-gradient(top, #ffffff 0%, #787878 100%); margin:0; height:100%; }
Comments
Post a Comment