90 lines
1.9 KiB
Markdown
90 lines
1.9 KiB
Markdown
![]() |
---
|
||
|
id: 6140883f74224508174794c0
|
||
|
title: Step 10
|
||
|
challengeType: 0
|
||
|
dashedName: step-10
|
||
|
---
|
||
|
|
||
|
# --description--
|
||
|
|
||
|
Fai in modo che l'`header` occupi tutta la larghezza del suo contenitore genitore, imposta la sua `height` a `50px`, e il `background-color` a `#1b1b32`. A questo punto imposta `display` in modo da usare _Flexbox_.
|
||
|
|
||
|
# --hints--
|
||
|
|
||
|
Dovresti usare il selettore di elemento `h1`.
|
||
|
|
||
|
```js
|
||
|
assert.exists(new __helpers.CSSHelp(document).getStyle('header'));
|
||
|
```
|
||
|
|
||
|
Dovresti dare a `header` una `width` del `100%`.
|
||
|
|
||
|
```js
|
||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('header')?.width, '100%');
|
||
|
```
|
||
|
|
||
|
Dovresti dare a `header` un'`height` di `50px`.
|
||
|
|
||
|
```js
|
||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('header')?.height, '50px');
|
||
|
```
|
||
|
|
||
|
Dovresti dare a `header` un `background-color` di `#1b1b32`.
|
||
|
|
||
|
```js
|
||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('header')?.backgroundColor, 'rgb(27, 27, 50)');
|
||
|
```
|
||
|
|
||
|
Dovresti dare a `header` un `display` di `flex`.
|
||
|
|
||
|
```js
|
||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('header')?.display, 'flex');
|
||
|
```
|
||
|
|
||
|
# --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" />
|
||
|
<meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
|
||
|
<title>Accessibility Quiz</title>
|
||
|
<link rel="stylesheet" href="styles.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<img id="logo" src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg">
|
||
|
<h1>HTML/CSS Quiz</h1>
|
||
|
<nav></nav>
|
||
|
</header>
|
||
|
<main></main>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
body {
|
||
|
background: #f5f6f7;
|
||
|
color: #1b1b32;
|
||
|
font-family: Helvetica;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
--fcc-editable-region--
|
||
|
|
||
|
--fcc-editable-region--
|
||
|
|
||
|
#logo {
|
||
|
width: max(100px, 18vw);
|
||
|
background-color: #0a0a23;
|
||
|
aspect-ratio: 35 / 4;
|
||
|
padding: 0.4rem;
|
||
|
}
|
||
|
|
||
|
```
|