scrimba
Frontend Career Path
Essential CSS concepts
Build a Coworking Space Site
Aside: margin: auto on flexbox children
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

Aside: margin: auto on flexbox children
AboutCommentsNotes
Aside: margin: auto on flexbox children
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
}

.meme-container {
width: 400px;
height: 400px;
background-image: url('husky.jpeg');
background-size: cover;
margin: 30px auto;
box-shadow: 1px 1px 5px #999;
}

.meme-text {
/* background-color: black; */
padding: 10px 20px;
color: white;
width: 250px;
}

h1 {
font-size: 18px;
}




Console
/index.html
-9:23