scrimba
HTML & CSS
Build a Space Exploration Site
Center elements and style button
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

Center elements and style button
AboutCommentsNotes
Center elements and style button
Expand for more info
styles.css
run
preview
console
/*
Challenge:
1. Center the text and button
2. Style the button according to the design.
Use a class to select the button.
*/

body {
color: white;
background-image: url("images/universe.jpg");
background-size: cover;
}
Console
/index.html
-3:15