Background blend mode - HTML CSS CSS Property

HTML CSS examples for CSS Property:background

Description

Background blend mode

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials