html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<img id="background" alt="sunflowers" src="http://www.sololearn.com/uploads/slider/1.jpg">
<div id="restOfPage">
<h1>Only background is blurred</h1>
<p>rest of the page...</p>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#background {
/* This is to positionate the image under all other elements */
/*••••••••••••••••••••••*/
position: absolute;
top: 0;
left: 0;
z-index: 1;
/*••••••••••••••••••••••*/
filter: blur(2px);
}
#restOfPage {
/* This is to positionate all other elements over background image */
/*••••••••••••••••••••••*/
position: relative;
z-index: 2;
/*••••••••••••••••••••••*/
color: white;
text-shadow: 1px 2px 3px black;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run