CSS3 Linear Gradient


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



Copy this code and paste it in your HTML
  1. -webkit-gradient(
  2. linear,
  3. left bottom,
  4. left top,
  5. color-stop(0, rgb(0,0,0)),
  6. color-stop(1, rgb(255,255,255))
  7. )
  8. -moz-linear-gradient(
  9. center bottom,
  10. rgb(0,0,0) 0%,
  11. rgb(255,255,255) 100%
  12. )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.