-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (38 loc) · 822 Bytes
/
example.html
File metadata and controls
39 lines (38 loc) · 822 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
<!DOCTYPE html>
<html>
<head>
<title>IE Checker Example</title>
<script src="ie-checker-min.js"></script>
<style type="text/css">
div {
display: none;
}
.not-ie {
display: block;
}
.is-ie .not-ie {
display: none;
}
html.ie11 div.ie11,
html.ie10 div.ie10,
html.ie9 div.ie9,
html.ie8 div.ie8,
html.ie7 div.ie7
{
display: block;
}
.lt-ie9 .warning {
display: block;
}
</style>
</head>
<body>
<div class="ie7">You are IE7!</div>
<div class="ie8">You are IE8!</div>
<div class="ie9">You are IE9!</div>
<div class="ie10">You are IE10!</div>
<div class="ie11">You are IE11!</div>
<div class="not-ie">You are not IE!</div>
<div class="warning">You are using outdated browser. Visit <a href="http://browsehappy.com" target="_blank">browsehappy.com</a>!</div>
</body>
</html>