scrimba
Frontend Career Path
Web dev basics
Build a digital Business Card
Add a border and padding
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
Add a border and padding
Expand for more info
styles.css
run
preview
console
body {
margin: 20px;
}

.avatar {
width: 150px;
}

/*
Challenge:
1. Give the card div a class (name it "card")
2. Select the card class and give it a dotted blue border
3. Add 20 pixels of padding on all sides of the card
*/
Console
/index.html
-3:46