Within each of your new th
elements, nest a span
element with the class
set to sr-only year
. Give them the following text (in order): 2019
, 2020
, and 2021
.
Give your third th
element the class
attribute set to current
.
Leave the td
element empty. This element exists only to ensure your table has a four-column layout and associate the headers with the correct columns.
My Solution:
<tr>
<td></td>
<th><span class="sr-only year">2019</span></th>
<th><span class="sr-only year">2020</span></th>
<th><span class="sr-only year">2021</span></th>
</tr>
</thead>
My 2nd Solution I tried:
<thead>
<tr>
<td></td>
<th><span class="sr-only year">2019</span></th>
<th><span class="sr-only year">2020</span></th>
<th><span class="sr-only year current">2021</span></th>
</tr>
</thead>
I cannot prompt various was to make the solution work. I got so disheartened I actually deleted my entire account. I had the Legacy work completed except the Portfolio Project. I had every assignment on the Newly Created Responsive Web Courses ... except this one assignment. I was all the way to my JavaScript and got upset because I couldn't get it figured out and deleted all my work!
I need Tech Support to help me. Because I saw other's solutions and mine first attempt was correct and it still responds by blocking me from moving forward. I'm upset. :frowning:
FCC does not have anyone to help from Tech Support to fix the glitch that's not allowing me to move forward from this step but I can do everything else. Why???
Ugh, Hulk Smash!
Thank you Nikola Jacques and Bruce B, your inquiries and guidance made it easier for me to communicate better and display my code properly! Vitural high-5s guys!
[I'm not sure I'm doing this correctly, but I've pasted my link.](https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-more-about-css-pseudo-selectors-by-building-a-balance-sheet/step-11)