Project 4: Photo Gallery
CSS Stylist
Builds on these lessons
Step 1 of 2
Project
Text Alignment & Font Styling
Center .gallery-title with text-align: center. Then style .caption with a smaller font-size, a lighter font-weight, and text-align: left — captions should read like captions, not headlines.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
.gallery-title {
text-align: center;
}
.caption {
font-size: 14px;
font-weight: 400;
text-align: left;
}