This repository was archived by the owner on Jan 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
64 lines (40 loc) · 1.26 KB
/
default.html
File metadata and controls
64 lines (40 loc) · 1.26 KB
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
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<title>vAlign Plugin</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.valign.js"></script>
<style>
.item {
width:200px;
height:400px;
float:left;
margin:0 10px;
background:#e6e6e6;
text-align:center;
}
p {
margin:0;
padding:0;
}
</style>
<!-- Example usage -->
<script type="text/javascript">
$(function() {
$('.items .item .txt').valign();
});
</script>
</head>
<body>
<div class="pageContent">
<h1>vAlign jQuery Plugin</h1>
<div class="items">
<div class="item"><div class="txt"><p>lorem ipsum</p></div></div>
<div class="item"><div class="txt"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p></div></div>
<div class="item"><div class="txt"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></div></div>
</div>
</div>
</body>
</html>