Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 28

Please i need help with this step.
Time to style your table. Start by resetting the box model. Create an html selector and give it a box-sizing property set to border-box .

html{
box-sizing:border-box;

Test

Sorry, your code does not pass. Try again.

Hint

You should have an html selector.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 28

Link to the challenge:

You should have a space between box-sizing and border-box:
`html {
box-sizing: border-box;
}

Thank you. I had a curly bracket which is not supposed to be there

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.