scrimba
CSS - It's all in the presentation!
Divs, margins and centering
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

Divs, margins and centering
AboutCommentsNotes
Divs, margins and centering
Expand for more info
css
styles.css
run
preview
console
body {
font-family: 'Chicle', cursive;
background-image: url("images/dog-background.jpg")
}

h1, p {
text-align: center;
}

h1 {
color: tan;
text-shadow:2px 2px 1px black;
}

p, li {
font-weight: bold;
}

img {
border: 2px solid black;
width: 400px;
border-radius: 15px;
}
Console
/index.html
-5:05