* chore(curriculum): accessibility-quiz * chore(curriculum): cafe-menu * chore(curriculum): ferris-wheel * chore(curriculum): fix ferris-wheel tests * chore(curriculum): colored-markers * chore(curriculum): photo-gallery * chore(curriculum): magazine * chore(curriculum): penguin * chore(curriculum): city-skyline * chore(curriculum): registration-form * chore(curriculum): picasso-painting * chore(curriculum): balance-sheet * chore(curriculum): piano * chore(curriculum): rothko-painting * fix: title min 15 chars
933 B
933 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
60f1a5e2d2c23707a4f9a660 | Step 8 | 0 | step-8 |
--description--
Now, get rid of the horizontal scroll-bar, by setting the body
default margin
added by some browsers to 0
.
--hints--
You should add margin
within the body
element selector.
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('body')?.margin);
You should give the margin
a value of 0
.
assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.margin, '0px');
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
</body>
</html>
--fcc-editable-region--
body {
width: 100%;
height: 100vh;
}
--fcc-editable-region--