scrimba
HTML & CSS
A basic layout - centering an element on the page
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

A basic layout - centering an element on the page
AboutCommentsNotes
A basic layout - centering an element on the page
Expand for more info
css
style.css
run
preview
console
header {
background-color: #4a4a4a;
color: blanchedalmond;
text-align: center;
padding: 25px 0;
margin-bottom: 25px;
}

main {
background-color: #e4e4e4;
width: 600px;
padding: 25px;
border: solid 5px red;
}

footer {
background-color: #4a4a4a;
color: blanchedalmond;
text-align: center;
padding: 25px 0;
margin-top: 25px;
}
Console
index.html
-6:07