freeCodeCamp/curriculum/challenges/japanese/14-responsive-web-design-22/learn-html-forms-by-buildin.../60f1a5e2d2c23707a4f9a660.md

1.1 KiB

id title challengeType dashedName
60f1a5e2d2c23707a4f9a660 ステップ 9 0 step-9

--description--

では body について、一部のブラウザで追加されるデフォルトの margin0 に設定して、水平方向のスクロールバーを取り除きましょう。

--hints--

body 要素セレクター内に margin を追加する必要があります。

assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('body')?.margin);

margin の値を 0 に設定する必要があります。

assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.margin, '0px');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <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>
--fcc-editable-region--
body {
  width: 100%;
  height: 100vh;
}
--fcc-editable-region--