scrimba
CSS Fundamentals
Styling links
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

Styling links
AboutCommentsNotes
Styling links
Expand for more info
css
style.css
run
preview
console
.card {
background: #000;
color: white;
width: 560px;
margin: 0 auto;
padding: 45px;
}

h1, p {
margin-top: 0;
}

h1 {
font-size: 24px;
}

p {
font-size: 18px;
}

.links {
margin-top: 40px;
margin-bottom: 0;
}

.accent-color {
color: #FFE600;
}
Console
index.html
-12:23