OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> | 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> |
4 <style> | 4 <style> |
5 .tr { display: table-row; } | 5 .tr { display: table-row; } |
6 .td { display: table-cell; } | 6 .td { display: table-cell; } |
7 div.tr:before { content: "A"; color: blue; } | 7 div.tr:before { content: "A"; color: blue; } |
8 div.tr:after { content: "C"; color: orange; } | 8 div.tr:after { content: "C"; color: orange; } |
9 </style> | 9 </style> |
10 <body> | 10 <body> |
11 <div> | 11 <div> |
12 <div class="tr"> | 12 <div class="tr"> |
13 <div class="td" style="color: green">B</div> | 13 <div class="td" style="color: green">B</div> |
14 </div> | 14 </div> |
15 </div> | 15 </div> |
16 <script> | 16 <script> |
17 document.body.style.fontSize = "100px"; | 17 document.body.style.fontSize = "100px"; |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |