css模糊技术仅适用于背景

时间:2015-06-13 23:19:33

标签: css3

我想使用css3过滤器模糊此html代码的背景图片,请提供说明。

    <!DOCTYPE html>
<html>
<head>
    <title>Student-login</title>
    <link href='http://fonts.googleapis.com/css?family=Slabo+27px' rel='stylesheet' type='text/css'>
    <style>
        body{

            background-image: url("background.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
        }

    </style>
</head>
<body>
    <div class="main-form">
    <h1>Hello</h1>
    </div>
</body>
</html>

但是这里的内容不会模糊。

1 个答案:

答案 0 :(得分:1)

你必须使用两个不同的容器,看看它会对你有所帮助:

https://stackoverflow.com/a/20039965/4298050