scrimba
How to Build a Beautiful Blog
Image Elements
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

AboutCommentsNotes
Image Elements
Expand for more info
styles
article.css
run
preview
console
article {
display: grid;
grid-template-columns: 1fr 0.5in [start] 7.5in [end] 0.5in 1fr;

padding: 0.5in 0;
}

article * { grid-column: start / end; }

@media (max-width: 8.5in) {
article { grid-template-columns: 1fr 5% [start] 90% [end] 5% 1fr; }
}
Console
index.html
-4:01