代码素材 您现在的位置是:网站首页 > 代码素材

css设置图片背景色透明的两种方法,直接上代码样式,具体如下:

方法一:

<div class="box"></div>

  .box{

  width:300px;

  height:200px;

  margin:0auto;

  border:1pxsolid#ccc;

  background:red;

  opacity:0.2;

  }


方法二:

background-repeat: no-repeat;

background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url(/images/transparent.png);