Как не крутил, но применяя margin кратные 5px или auto выше 97% не смог подняться. Прошу помощи в доведении до 100%.
HTML
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Испытание: кубизм</title>
<base href="/assets/course113/">
<link href="style.css" rel="stylesheet">
<link href="course.css" rel="stylesheet">
<link href="exam-1.css" rel="stylesheet">
<style>
.palette {
align-items: stretch !important;
}
.palette [class^="color"] {
align-self: stretch !important;
}
</style>
</head>
<body class="exam">
<div class="palette">
<div class="color-olive"></div>
<div class="color-yellow"></div>
<div class="color-fuchsia"></div>
<div class="color-aqua"></div>
</div>
</body>
</html>
CSS
.palette div {
min-width: 35px;
min-height: 35px;
}
.palette {
display: flex;
}
.color-olive {
width: 50px;
height: 150px;
margin: auto;
margin-right: 10px;
}
.color-yellow {
width: 30px;
height: 100px;
margin-top: auto;
margin-bottom: 5px;
margin-right: 30px;
}
.color-fuchsia {
width: 30px;
height: 100px;
margin-bottom: auto;
margin-top: 5px;
margin-left: 0px;
}
.color-aqua {
width: 50px;
height: 150px;
margin: auto;
margin-left: 10px;
}