- 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-8.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;
property: center;
}
/*
Замените имя property на нужное flex-свойство,
чтобы получилось как в образце.
Подсказки:
Возможные свойства:
align-items
content-justify
justify-content
flex-direction
*/
Ha ido a otra página
0