| OLD | NEW |
| 1 body { | 1 body { |
| 2 -webkit-font-smoothing: none; | 2 -webkit-font-smoothing: none; |
| 3 } | 3 } |
| 4 | 4 |
| 5 div { | 5 div { |
| 6 border: 5px double; | 6 border: 5px double; |
| 7 padding: 5px; | 7 padding: 5px; |
| 8 diplay: inline; | 8 diplay: inline; |
| 9 } | 9 } |
| 10 | 10 |
| 11 div.auto { | 11 div.auto { |
| 12 text-decoration-style: solid; | 12 text-decoration-style: solid; |
| 13 text-decoration-line: underline; | 13 text-decoration-line: underline; |
| 14 text-underline-position: auto; | 14 text-underline-position: auto; |
| 15 } | 15 } |
| 16 | 16 |
| 17 div.alphabetic { | |
| 18 text-decoration-style: solid; | |
| 19 text-decoration-line: underline; | |
| 20 text-underline-position: alphabetic; | |
| 21 } | |
| 22 | |
| 23 div.under { | 17 div.under { |
| 24 text-decoration-style: solid; | 18 text-decoration-style: solid; |
| 25 text-decoration-line: underline; | 19 text-decoration-line: underline; |
| 26 text-underline-position: under; | 20 text-underline-position: under; |
| 27 } | 21 } |
| 28 | 22 |
| 29 span.auto { | 23 span.auto { |
| 30 text-decoration-style: solid; | 24 text-decoration-style: solid; |
| 31 text-decoration-line: underline; | 25 text-decoration-line: underline; |
| 32 text-underline-position: auto; | 26 text-underline-position: auto; |
| 33 } | 27 } |
| 34 | 28 |
| 35 span.alphabetic { | |
| 36 text-decoration-style: solid; | |
| 37 text-decoration-line: underline; | |
| 38 text-underline-position: alphabetic; | |
| 39 } | |
| 40 | |
| 41 span.under { | 29 span.under { |
| 42 text-decoration-style: solid; | 30 text-decoration-style: solid; |
| 43 text-decoration-line: underline; | 31 text-decoration-line: underline; |
| 44 text-underline-position: under; | 32 text-underline-position: under; |
| 45 } | 33 } |
| 46 | 34 |
| 47 .box { | 35 .box { |
| 48 width: 300px; | 36 width: 300px; |
| 49 height: 100px; | 37 height: 100px; |
| 50 } | 38 } |
| 51 | 39 |
| 52 .position_absolute { | 40 .position_absolute { |
| 53 position: absolute; | 41 position: absolute; |
| 54 top: 200px; | 42 top: 200px; |
| 55 left: 100px; | 43 left: 100px; |
| 56 } | 44 } |
| OLD | NEW |