欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css设置背景模糊

程序员文章站 2022-03-28 19:10:35
使用filter属性来设置模糊值 效果: css样式: HTML结构: ......

使用filter属性来设置模糊值

效果:

css设置背景模糊

 

css样式:

 

<style type="text/css">
        .cover {
            width: 600px;
            height: 300px;
            position: relative;
            text-align: center;
            line-height: 300px;
            color: #fff;
            margin: 20px auto;
        }
        
        .cover::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 600px;
            height: 300px;
            background: transparent url(images/picture/5.jpg) center center no-repeat;
            filter: blur(8px);
            z-index: -1;
            background-size: cover;
        }
    </style>

 

html结构:

<body>
    <div class="cover">
        <h2>背景模糊,文字清晰显示</h2>
    </div>
</body>