1.position-static {
2    position: static!important
3}
4
5.position-relative {
6    position: relative!important
7}
8
9.position-absolute {
10    position: absolute!important
11}
12
13.position-fixed {
14    position: fixed!important
15}
16
17.position-sticky {
18    position: sticky!important
19}
20
21.top-0 {
22    top: 0!important
23}
24
25
26
27.top-50 {
28    top: 50%!important
29}
30
31
32.top-100 {
33    top: 100%!important
34}
35
36.bottom-0 {
37    bottom: 0!important
38}
39
40.bottom-50 {
41    bottom: 50%!important
42}
43
44.bottom-100 {
45    bottom: 100%!important
46}
47
48.start-0 {
49    left: 0!important
50}
51
52
53.start-50 {
54    left: 50%!important
55}
56
57
58
59.start-100 {
60    left: 100%!important
61}
62
63.end-0 {
64    right: 0!important
65}
66
67.end-50 {
68    right: 50%!important
69}
70
71.end-100 {
72    right: 100%!important
73}
74
75.translate-middle {
76    transform: translate(-50%,-50%)!important
77}
78
79
80.translate-middle-x {
81    transform: translateX(-50%)!important
82}
83
84.translate-middle-y {
85    transform: translateY(-50%)!important
86}
87