scrimba
Introduction to CSS
CSS Borders
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
CSS Borders
Expand for more info
style.css
run
preview
console
.box {
background-color: lightgray;
width: 100px;
height: 100px;
padding: 10px;
box-sizing: border-box;

}
.content {
background-color: white;
padding: 10px;
box-sizing: border-box;
}
Console
index.html#
-1:45