HTML CSS examples for CSS:Color
A linear gradient with transparency:
<!DOCTYPE html> <html> <head> <style> #grad1 {<!--from w w w.j av a 2 s. c om--> height: 200px; background: -webkit-linear-gradient(left, rgba(255,0,0,0), rgba(255,0,0,1)); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(right, rgba(255,0,0,0), rgba(255,0,0,1)); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(right, rgba(255,0,0,0), rgba(255,0,0,1)); /* For Firefox 3.6 to 15 */ background: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); /* Standard syntax (must be last) */ } </style> </head> <body> <div id="grad1"></div> </body> </html>