HTML CSS examples for CSS Property:background
Background blend mode
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> body {<!-- www. j a v a 2 s . com--> background: linear-gradient( cyan , rgba(255,255,255,0) ), linear-gradient( -45deg, magenta, rgba(255,255,255,0) ), linear-gradient( 45deg, orange, rgba(255,255,255,0) ); background-blend-mode: screen; background-attachment: fixed; } </style> </head> <body> </body> </html>