- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test: Cubism</title>
<link href="course.css" rel="stylesheet">
<link href="style.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;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.