forked from peterbe/mincss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsix.html
More file actions
60 lines (54 loc) · 818 Bytes
/
six.html
File metadata and controls
60 lines (54 loc) · 818 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
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>test page</title>
<style>
.pull-left {
float: left;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@-moz-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@-ms-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
.pull-right {
float: right;
}
.pull-middle {
float: middle;
}
</style>
</head>
<body>
<input class="pull-left">
<input class="pull-right">
</body>
</html>