<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    <title>css3背景图片渐变显示</title>
</head>
<style>
    .container{
    }
    .item{
        position: relative;
        width: 100px;
        height: 150px;
    }
    .bg{
        width: 100%;
        height: 100%;
        background-size: cover;
        position: absolute;
    }
</style>
<body>
<div class="container">
    <div class="item">
        <div class="bg" style="background-image:linear-gradient(to bottom, rgba(255, 255, 255, 1),rgba(255, 255, 255, 0.95),rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)), url(https://tse1-mm.cn.bing.net/th/id/OIP-C.nRlAFygdctTCHmIWN7GxRwHaEK?pid=ImgDet&rs=1)"> </div>
    </div>
    <div>
        <div></div>
    </div>
</div>
</body>
</html>

 

最后修改于 2022-04-14 16:06:26
如果觉得我的文章对你有用,请随意赞赏
扫一扫支付
上一篇