View Single Post
Old 02-20-2012, 10:13 PM  
TheDoc
Too lazy to set a custom title
 
TheDoc's Avatar
 
Industry Role:
Join Date: Jul 2001
Location: Currently Incognito
Posts: 13,827
Just gota cover all the browsers with the gradient stuff... can also drop in a png with a gradient and opacity set on it, called as a background in css.

Code:
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#000000' );
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr=’#333333’, endColorstr=’#000000’, GradientType=0 );
background: -webkit-gradient( linear,left top,left bottom,color-stop( 0%, #333333 ), color-stop( 100%, #000000) );
background: -moz-linear-gradient( top, #333333, #000000 );
background-image: -o-linear-gradient( #333333, #000000 );
background: -webkit-gradient( linear, left top, left bottom, from( #333333 ), to( #000000 ) );
background: -moz-linear-gradient( top, #333333, #000000 );
__________________
~TheDoc - ICQ7765825
It's all disambiguation

Last edited by TheDoc; 02-20-2012 at 10:16 PM..
TheDoc is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote