scrimba
JS Deep Dive
DOM
Creating and Modifying HTML Elements
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

Creating and Modifying HTML Elements
AboutCommentsNotes
Creating and Modifying HTML Elements
Expand for more info
style.css
run
preview
console
body {
margin: 0;
}

header {
width: 100%;
display: flex;
padding: 1em 0;
align-items: center;
justify-content: space-evenly;
background: purple;
}

a {
color: white;
}

.post {
color: darkgreen;
}

.top-post {
padding: 15px;
border: 1px solid #d6e9c6;
border-radius: 4px;
color: #3c763d;
background-color: #dff0d8;
}
Console
/index.html
-3:12