Problem 56
Using the same selector syntax, target the th
elements within your table rows where the class
is total
. Align the text to the left, and give them a padding of 0.5rem 0 0.25rem 0.5rem
.
My Code so far
tr[class="total"] th {
text-align: left;
padding: 0.5rem 0 0.25rem 0.5rem;
}
WARNING
My code above is not working what am I doing wrong? I looked videos up online and litterally copy and pasted the correct solution and it doesn’t go through?? Can you tell me what Im doing wrong.