When a test fails click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
The failing message says
The height of the welcome section should be equal to the height of the viewport.
The height of #welcome-section is not equal to the height of the viewport : expected 422 to be close to 419 +/- 0
AssertionError: The height of #welcome-section is not equal to the height of the viewport : expected 422 to be close to 419 +/- 0
You’ve got two things going on that you need to revisit;
There’s a border added to the #welcome-section…or not one really. Not sure what you were trying to accomplish
There’s a section selector after the #welcome-section selector that’s adding padding. Remember that the C in CSS stands for Cascading. The #welcome-section is also a section.
Thank you so much! This was a very clear explanation. I think I understand now what went wrong. Will try to read my code again and try to fix it. For now, many thanks. Will update post when code is fixed.