i can not find correct answer more bacause i don’t habe any idea
Task was
The key difference between tr[class="total"]
and tr.total
is that the first will select tr
elements where the only class is total
. The second will select tr
elements where the class includes total
.
In your case, tr.total
will work. You can use this selector to target all td
elements within your .total
rows. Align the text to the right, and give them a padding of 0 0.25rem
.
i put my code
tr.total td{text-align:right;
padding:0 0.25rem;
}
but answer was You should have a tr.total td
selector.