Question:You defined two styles as follows: td.right {text-align: right} td.left {text-align: left} Which of the following is the right way to use them in an HTML page?
A <td class="td.right">Some Text</td>
B <td class="right" class="left">Some Text</td>
C <td class="td.left" class="td.right">Some Text</td>
D <td class="right">Some Text</td>
+ AnswerD
+ Report