- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Испытание</title>
<link rel="stylesheet" href="setting.css">
<link rel="stylesheet" href="local-9.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="stage stage-space">
<section class="target cards" aria-label="energy beacon lane">
<article class="item">A-01</article>
<article class="item">B-02</article>
<article class="item">C-03</article>
</section>
</main>
</body>
</html>
CSS
.cards {
display: flex;
justify-content: center;
}
/*
Измените только значение justify-content, чтобы получилось как в образце.
Подсказки:
flex-end
space-around
space-between
space-evenly
*/
Ha ido a otra página
0