我想使用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>
但是这里的内容不会模糊。