scrimba
HTML & CSS
Box model wrap up
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
Box model wrap up
Expand for more info
css
style.css
run
preview
console
body {
background: #333;
color: white;
}

header {
width: 100px;
padding: 20px;
margin: 20px;
border: 10px solid yellow;
}
Console
index.html
-3:42