CSS同时使用背景图和渐变色
需求
一个盒子,在拥有渐变色的前提下还需要同时拥有背景图层
类似如下的效果
代码实现
首先我们按照常规的写css的方式来写
<div class="box"></div>
.box{
width: 300px;
height: 120px;
border-radius: 15px;
background-color:#ff5e62;
background-image:url('./btc1.png');
background-position: right 20px top 50%;
background-repeat: no-repeat;
}
这种图片加背景的写法没什么问题。可以正常显示背景和图片
但是我们把背景换成渐变色以后就出问题了
不显示渐变色,只显示一个图片
background:linear-gradient(to right, #ff9966, #ff5e62);
完整写法
把背景图和渐变色写在一起
这里url一定要写在前面,展示在上层,如果写在linear-gradient后面就只会显示渐变色
.box{
width: 300px;
height: 120px;
border-radius: 15px;
background:
url('./btc1.png') right 20px top 50% / 50px 50px no-repeat,
linear-gradient(to right, #ff9966, #ff5e62);
}
上面的代码最终呈现的效果