scrimba
HTML & CSS
Build a Digital Business Card
Justify the items
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
Justify the items
Expand for more info
styles.css
run
preview
console
body {
margin: 20px;
}

.avatar {
width: 150px;
}

.card {
padding: 20px;
display: flex;
/*
Challenge:
Add horizontal space around the flex children.
Hint: google "justify content"
*/
}

.border-blue {
border: 1px dotted blue;
}

Console
/index.html
-2:06