scrimba
JavaScript Challenges
Build a Modal: Buttons CSS
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

Build a Modal: Buttons CSS
AboutCommentsNotes
Build a Modal: Buttons CSS
Expand for more info
styles.css
run
preview
console
html, body {
margin: 0;
padding: 50px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}

/**
Our buttons '#open-modal, #close-modal'

1) For the background colour use 'royalblue'
2) Be aware of the colour, padding & font size
3) Make sure the cursor has a pointer so that it demonstrates to the user the button is clickable
**/
Console
/index.html
-3:12