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

77 lines
1.5 KiB
Markdown
Raw Normal View History

---
id: 5f356ed63c7807a4f1e6d054
title: Step 22
challengeType: 0
dashedName: 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`.
```js
const hasDiv = new __helpers.CSSHelp(document).getStyle('div');
assert(hasDiv);
```
Dovresti assegnare alla proprietà `width` il valore `300px`.
```js
const hasWidth = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.width === '300px');
assert(hasWidth);
```
`div` dovrebbe avere una larghezza di 300px.
```js
const divWidth = new __helpers.CSSHelp(document).getStyle('div')?.getPropertyValue('width');
assert(divWidth === '300px');
```
# --seed--
## --seed-contents--
```html
<!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>
```
```css
--fcc-editable-region--
body {
background-color: burlywood;
}
h1, h2, p {
text-align: center;
}
--fcc-editable-region--
```