-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
53 lines (48 loc) · 728 Bytes
/
example.html
File metadata and controls
53 lines (48 loc) · 728 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<!--[if lt IE 9]>
<style>
html, body {
height: 100%;
margin: 0;
}
body {
margin: 0;
padding: 0;
}
.no-ie {
min-height: 100%;
background-color: rgb(150, 150, 150);
}
.absolute-center {
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 200px;
text-align: center;
font-size: 50px;
color: #FFF;
}
.not-ie{
display:none;
}
</style>
<![endif]-->
<title>Piss off IE user</title>
</head>
<body>
<!--[if lt IE 9]>
<div class="no-ie">
<div class="absolute-center">
No ieeee
</div>
</div>
<![endif]-->
<div class="not-ie">
You are cool bro, dont worry.
</div>
</body>
</html>