/ Published in: CSS
From: http://www.webdesignerwall.com/tutorials/cross-browser-css-gradient/
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* for webkit browsers */ background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000)); /* for firefox 3.6+ */ background: -moz-linear-gradient(top, #ccc, #000); /* for IE */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');
URL: http://www.webdesignerwall.com/tutorials/cross-browser-css-gradient/