freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-typography-by-buildin.../615f39d7da41b15851fa3fb9.md

1.3 KiB

id title challengeType dashedName
615f39d7da41b15851fa3fb9 Step 10 0 step-10

--description--

Assegna al selettore .label una proprietà margin con il valore 20px auto e una proprietà padding con il valore 0 7px.

--hints--

Il selettore .label dovrebbe avere una proprietà margin con il valore 20px auto.

assert(new __helpers.CSSHelp(document).getStyle('.label')?.margin === '20px auto');

Il selettore .label dovrebbe avere una proprietà padding con il valore 0 7px.

assert(new __helpers.CSSHelp(document).getStyle('.label')?.padding === '0px 7px');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Nutrition Label</title>
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800" rel="stylesheet">
    <link href="./styles.css" rel="stylesheet">
  </head>
  <body>
    <div class="label">
      <h1>Nutrition Facts</h1>
      <p>8 servings per container</p>
      <p>Serving size 2/3 cup (55g)</p>
    </div>
  </body>
</html>
html {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
}

--fcc-editable-region--
.label {
  border: 2px solid black;
  width: 270px;
}
--fcc-editable-region--