OLD | NEW |
---|---|
(Empty) | |
1 .testDiv { | |
2 width:150px; | |
Julien - ping for review
2013/10/25 18:49:19
Nit: Space after the ':'.
dw.im
2013/10/28 02:56:14
Sure!
| |
3 border:1px solid #000000; | |
4 font-size:14pt | |
Julien - ping for review
2013/10/25 18:49:19
This is a weird and slightly dangerous way to test
dw.im
2013/10/30 05:42:44
So, I change like below.
font-family: "Courier Ne
| |
5 } | |
6 | |
7 .testP { | |
8 border:0; | |
9 margin:0; | |
10 padding:0; | |
11 } | |
12 | |
13 .alignStart { | |
14 text-align:start; | |
15 } | |
16 | |
17 .alignEnd { | |
18 text-align:end; | |
19 } | |
20 | |
21 .alignRight { | |
22 text-align:right; | |
23 } | |
24 | |
25 .alignLeft { | |
26 text-align:left; | |
27 } | |
28 | |
29 .alignCenter { | |
30 text-align:center; | |
31 } | |
32 | |
33 .alignLastAuto { | |
34 text-align-last:auto; | |
35 } | |
36 | |
37 .alignLastStart { | |
38 text-align-last:start; | |
39 } | |
40 | |
41 .alignLastEnd { | |
42 text-align-last:end; | |
43 } | |
44 | |
45 .alignLastRight { | |
46 text-align-last:right; | |
47 } | |
48 | |
49 .alignLastLeft { | |
50 text-align-last:left; | |
51 } | |
52 | |
53 .alignLastCenter { | |
54 text-align-last:center; | |
55 } | |
56 | |
57 .alignLastJustify { | |
58 text-align-last:justify; | |
59 } | |
OLD | NEW |