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

1.1 KiB

id title challengeType dashedName
60f1922fcbd2410527b3bd89 Step 7 0 step-7

--description--

Adesso, iniziamo ad abbellire il progetto aggiungendo un po' di CSS. Inizia assegnando al body una proprietà width del 100%, e una proprietà height di 100vh.

--hints--

Dovresti usare un selettore body.

assert.exists(new __helpers.CSSHelp(document).getStyle('body'));

Dovresti assegnare al body una proprietà width del 100%.

assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.width, '100%');

Dovresti assegnare al body una proprietà height di 100vh.

assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.height, '100vh');

--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--

--fcc-editable-region--