scrimba
Responsive Design
Taking it to the next level
Setting up our grid for small screens
Go Pro!

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

Setting up our grid for small screens
AboutCommentsNotes
Setting up our grid for small screens
Expand for more info
css
style.css
run
preview
console
* {box-sizing: border-box;}

body {
margin: 0;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
color: #404040;
line-height: 1.6;
}

h1, h2, strong {
font-weight: 700;
}


Console
index.html
-3:08