scrimba
HTML & CSS
Build a Google.com clone
Add space between our 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

Add space between our elements
AboutCommentsNotes
Add space between our elements
Expand for more info
styles.css
run
preview
console
/*
Challenge:
Add some space between the logo
and the search field.

What are the two different ways
we can do this with margins?

*/

.main {
margin-top: 100px;
}

.logo-img {
display: block;
width: 300px;
}

.search-input {
display: block;
width: 400px;
}
Console
/index.html
-1:03