CSS background-blend-mode 属性

background-blend-mode 属性定义了背景层的混合模式(图片与颜色)。

CSS background-blend-mode 属性_第1张图片

下面是代码和效果,

<style>
body  {background-color: yellow;}
div { 
  width: 290px;
  height: 69px;
  background-size: 290px 69px;
  background-repeat:no-repeat;
  background-image: linear-gradient(to right, green 0%,white 100%), url('logo.png');
  background-blend-mode: color-dodge;
}
style>
head>
<body>
<div>div>

CSS background-blend-mode 属性_第2张图片


注意:当设置

 background-blend-mode: nomal   时,logo将不会出现

你可能感兴趣的:(css,资料)