scrimba
Build a Snake game in JavaScript
Picking out elements using document.querySelector()
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

Picking out elements using document.querySelector()
AboutCommentsNotes
Picking out elements using document.querySelector()
Expand for more info
index.css
run
preview
console
html, body {
margin: 10;
padding: 10;
}

.grid {
width: 200px;
height: 200px;
border: solid 2px black;
}

.grid div {
width: 20px;
height: 20px;
}
Console
/index.html
-4:35