OLD | NEW |
---|---|
1 .testDiv { | 1 .testDiv { |
2 width: 300px; | 2 width: 300px; |
3 border: 1px solid #000000; | 3 border: 1px solid #000000; |
4 font-family: "Courier New", Courier, monospace; | 4 font-family: "Courier New", Courier, monospace; |
5 font-size: 12px; | 5 font-size: 12px; |
6 } | 6 } |
7 | 7 |
8 .alignStart { | 8 .alignStart { |
9 text-align: start; | 9 text-align: start; |
10 } | 10 } |
11 | 11 |
12 .alignJustify { | 12 .alignJustify { |
13 text-align: justify; | 13 text-align: justify; |
14 } | 14 } |
15 | 15 |
16 .alignLastStart { | |
17 text-align-last: start; | |
18 } | |
19 | |
20 .justifyAuto { | |
21 text-justify: auto; | |
22 } | |
16 .justifyNone { | 23 .justifyNone { |
17 text-justify: none; | 24 text-justify: none; |
18 } | 25 } |
26 .justifyInterWord { | |
27 text-justify: inter-word; | |
28 } | |
29 .justifyDistribute { | |
30 text-justify: distribute; | |
31 } | |
OLD | NEW |