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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
a {
background-position: top;
}
b {
background-position: top top;
}
c {
background-position: top left;
}
d {
background-position: top right;
}
e {
background-position: top bottom;
}
f {
background-position: top center;
}
g {
background-position: top 25%;
}
h {
background-position: left;
}
i {
background-position: left top;
}
j {
background-position: left left;
}
k {
background-position: left right;
}
l {
background-position: left bottom;
}
m {
background-position: left center;
}
n {
background-position: left 25%;
}
o {
background-position: right;
}
p {
background-position: right top;
}
q {
background-position: right left;
}
r {
background-position: right right;
}
s {
background-position: right bottom;
}
t {
background-position: right center;
}
u {
background-position: right 25%;
}
v {
background-position: bottom;
}
w {
background-position: bottom top;
}
x {
background-position: bottom left;
}
y {
background-position: bottom right;
}
z {
background-position: bottom bottom;
}
ab {
background-position: bottom center;
}
bb {
background-position: bottom 25%;
}
cb {
background-position: center;
}
db {
background-position: center top;
}
eb {
background-position: center left;
}
fb {
background-position: center right;
}
gb {
background-position: center bottom;
}
hb {
background-position: center center;
}
ib {
background-position: center 25%;
}
jb {
background-position: 25%;
}
kb {
background-position: 25% top;
}
lb {
background-position: 25% left;
}
mb {
background-position: 25% right;
}
nb {
background-position: 25% bottom;
}
ob {
background-position: 25% center;
}
pb {
background-position: 25% 25%;
}
|