-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposition-text.css
74 lines (47 loc) · 1.54 KB
/
position-text.css
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
/*
_____ ___ ___ _ _ _ ___
| ___/ _ \_ _| | | | | |_ _|
| |_ | | | | || | | | | || |
| || |_| | || |___ | |_| || |
|_| \___/___|_____| \___/|___ Framework Library
Position System. Senal's Position System allows you to
By Senal Bulumulle
/* */
/* Position */
.center {
text-align: center;
border: 3px solid /* ONLY ON DEBUG */transparent;
}
/* Position */
.left {
text-align: left;
border: 3px solid /* ONLY ON DEBUG */transparent ;
}
/* Position */
.space {
text-align: left;
border: 3px solid /* ONLY ON DEBUG */transparent;
}
/* INSTRUCTIONS
1. To center object, call
<div class="center">
</div>
2. To right object, call
<div class="right">
</div>
3. To left object, call
<div class="left">
</div>
4. To space object, call and repeat to move text to top to bottom
before putting html data code in. For example
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
<div class="space"></div>
*/