Quantcast
Channel: PipisCrew Official Homepage
Viewing all articles
Browse latest Browse all 11347

[css] gradient

$
0
0

http://www.colorzilla.com/gradient-editor/
or
http://www.cssmatic.com

//html and body to height: 100% doesn't seem to work if the content needs to scroll.
//warning when make gradient and the page is scrollable gradient fucked up, simple add fixed at the end of each line.
//http://stackoverflow.com/a/3294418
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cbccc8)) fixed;

//for mobiles needs also
 	html {
     height: auto;
     min-height: 100%;
  	}

Viewing all articles
Browse latest Browse all 11347