- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test: Flexible flows</title>
<link href="course.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body class="exam">
<div class="brick-layout">
<div class="brick color-aqua"></div>
<div class="brick color-aqua"></div>
<div class="brick color-aqua"></div>
<div class="brick color-yellow"></div>
<div class="brick color-yellow"></div>
<div class="brick color-yellow"></div>
<div class="brick color-fuchsia"></div>
<div class="brick color-fuchsia"></div>
</div>
</body>
</html>
CSS
.brick-layout {
width: 400px;
padding: 5px;
box-sizing: content-box;
}
.brick {
min-height: 80px;
min-width: 50px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.