怎样用css实现图片的渐变?如图
发布网友
发布时间:2022-04-23 03:38
我来回答
共2个回答
热心网友
时间:2022-04-06 12:08
<style>
div {
box-sizing:border-box;
width:400px;
height:240px;
font-size:22px;
padding-top:100px;
overflow:hidden;
background:no-repeat center top / 100% 100%;
background-image:linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0)), url(背景图片路径写在这)
}
</style>
<div>
文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字
</div>
热心网友
时间:2022-04-06 13:26
这个你可以在图片上面加个渐变颜色就行了,background:linear-gradient()