Please confused on step 8 help me figure it out

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <title>Registration Form</title>
	  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <h1>Registration Form</h1>
  <p>Please fill out this form with the required information</p>
</body>
</html>
/* file: styles.css */
body {
width: 100%;
height: 100vh;
margin: 
}
  **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: Step 8

Link to the challenge:

Now, get rid of the horizontal scroll-bar, by setting the body default margin added by some browsers to 0 .

I’ve pasted task from challenge. Can you tell me what part of the task is confusing? I need to know specific issue to give you appropriate hint.

1 Like

how exactly should i get rid of the horizontal scroll bar. by setting the body defauly margin… seams like i dont understand the english… please help me with a hint of the code if you can i will appreciate

Lets try to decipher this little task first:

They give you existing problem:

And right after that the give you solution you need for this problem.

Also they give you some additional knowledge to think about:

EDIT. If you have some English-related confusion, try to point me to specific expressions/words you don’t understand. But be aware I’m not a native English speaker

1 Like

And also I don’t think you need code example here, you need literally just set value to margin property for your body element selector , that will do it.

1 Like

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