freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-basic-css-by-building.../5f356ed63c7807a4f1e6d054.md

1.5 KiB

id title challengeType dashedName
5f356ed63c7807a4f1e6d054 Step 22 0 step-22

--description--

Adesso, l'obiettivo è far sì che div non occupi l'intera larghezza della pagina. La proprietà CSS width è perfetta per questo. Crea un nuovo selettore di tipo nel foglio di stile che dà al tuo elemento div una larghezza di 300px.

--hints--

Dovresti avere un selettore di tipo div.

const hasDiv = new __helpers.CSSHelp(document).getStyle('div');
assert(hasDiv);

Dovresti assegnare alla proprietà width il valore 300px.

const hasWidth = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.width === '300px');
assert(hasWidth);

div dovrebbe avere una larghezza di 300px.

const divWidth = new __helpers.CSSHelp(document).getStyle('div')?.getPropertyValue('width');
assert(divWidth === '300px');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
  </head>
  <body>
    <div>
      <main>
        <header>
          <h1>CAMPER CAFE</h1>
          <p>Est. 2020</p>
        </header>
        <section>
          <h2>Coffee</h2>
        </section>
      </main>
    </div>
  </body>
</html>
--fcc-editable-region--
body {
  background-color: burlywood;
}

h1, h2, p {
  text-align: center;
}
--fcc-editable-region--