The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.
You will need to take an additional step here so the code you wrote presents in an easy to read format.
Please copy/paste all the editor code showing in the challenge from where you just linked.
Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36
Challenge: Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 49
Welcome to FCC Forum, a great community of people helping each other!
It appears your code was too large to post here.
Could you please try to copy and paste your complete code between ``` before and at the very end of all of the code so we can view it and offer proper guidance?
The instructions for this step are asking for a table selector to target the border-collapse property and to set the value to collapse.
This would be done the same as any of your previous selectors in the code, with the only difference being the element, property and value.
Example:
element{
property: value;
}
I hope this helps you!
Please try the method to post your code for a better and more direct guidance to your issue?
‘’‘Create a table selector to target your tables. Set the border-collapse property to collapse , which will allow cell borders to collapse into a single border, instead of a border around each cell. Also set the border property to 0 to hide the borders themselves.’‘’
.table {
border-collapse: collapse;
border: 0;
}
You should have a table selector.