scrimba
Frontend Career Path
Responsive design
Build a Responsive Site
Aside: Create a flexbox image grid
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Aside: Create a flexbox image grid
AboutCommentsNotes
Aside: Create a flexbox image grid
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="image-container">
<div class="pet-item expand">
<img src="images/dog-1.jpg" alt="Australian shepherd">
</div>
<div class="pet-item">
<img src="images/cat-1.jpg" alt="Orange tabby cat">
</div>
<div class="pet-item">
<img src="images/dog-2.jpg" alt="Jack Russell Terrier">
</div>
<div class="pet-item">
<img src="images/cat-2.jpg" alt="Grey tabby cat">
</div>
<div class="pet-item">
<img src="images/dog-3.jpg" alt="Remmy the beagle pup">
</div>
<div class="pet-item expand">
<img src="images/cat-3.jpg" alt="Startled blue-eyed cat">
</div>
</div>
</body>
</html>
Console
/index.html
-6:18