OLD | NEW |
---|---|
(Empty) | |
1 .testDiv { | |
2 width: 150px; | |
3 border: 1px solid #000000; | |
4 font-family: "Courier New", Courier, monospace; | |
Julien - ping for review
2013/10/30 20:49:39
While this font list will work, why don't you just
dw.im
2013/10/31 02:09:06
Could be enough.
| |
5 font-size: 12px; | |
Julien - ping for review
2013/10/30 20:49:39
Why 12px here? Even though, we can't make assumpti
dw.im
2013/10/31 02:09:06
Then, how about using ttf file in webkit so that w
| |
6 } | |
7 | |
8 .testP { | |
9 border: 0; | |
10 margin: 0; | |
11 padding: 0; | |
12 } | |
13 | |
14 .alignStart { | |
15 text-align: start; | |
16 } | |
17 | |
18 .alignEnd { | |
19 text-align: end; | |
20 } | |
21 | |
22 .alignRight { | |
23 text-align: right; | |
24 } | |
25 | |
26 .alignLeft { | |
27 text-align: left; | |
28 } | |
29 | |
30 .alignCenter { | |
31 text-align: center; | |
32 } | |
33 | |
34 .alignLastAuto { | |
35 text-align-last: auto; | |
36 } | |
37 | |
38 .alignLastStart { | |
39 text-align-last: start; | |
40 } | |
41 | |
42 .alignLastEnd { | |
43 text-align-last: end; | |
44 } | |
45 | |
46 .alignLastRight { | |
47 text-align-last: right; | |
48 } | |
49 | |
50 .alignLastLeft { | |
51 text-align-last: left; | |
52 } | |
53 | |
54 .alignLastCenter { | |
55 text-align-last: center; | |
56 } | |
57 | |
58 .alignLastJustify { | |
59 text-align-last: justify; | |
60 } | |
OLD | NEW |