-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.04 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>IE Hack How to Enable Background Size</title>
<!-- jquery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!-- demo scripts -->
<style>
body {
background-color: #f3f3f3;
}
.background-size {
margin: 100px auto;
width: 500px;
height: 320px;
box-shadow: 5px 5px 0 0 rgba(0,0,0,.1);
background-image: url('img/image.jpg');
background-size: cover;
-ms-behavior: url('http://demo.hongkiat.com/ie-background-size/js/backgroundsize.htc');
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
</style>
<!-- nav script -->
<script src="../_nav/js/nav.js" type="text/javascript"></script>
</head>
<body>
<!-- nav script -->
<div class="demo-meta">
<h1 class="demo-title">Enable Background Size</h1>
<p class="demo-desc">A demo that show background size.</p>
</div>
<!-- demo content -->
<div class="demo-wrapper">
<div class="background-size">Background Size</div>
</div>
</body>
</html>