css3 gradient fill (FF, webkit)


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. .gradient-fill {
  2. background-image: -moz-linear-gradient(top, #444444, #999999);
  3. background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #444444),color-stop(1, #999999));
  4. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.