scrimba
Build Pac-Man in JavaScript
Creating our grid in JavaScript Part 2
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

Creating our grid in JavaScript Part 2
AboutCommentsNotes
Creating our grid in JavaScript Part 2
Expand for more info
index.css
run
preview
console
html, body {
margin: 10;
padding: 10;
}

.grid {
display: flex;
flex-wrap: wrap;
width: 420px;
height: 420px;
border: solid black;
}

.grid div {
width: 15px;
height: 15px;
}

.pac-dot {
background-color: green;
border: 5px solid white;
box-sizing: border-box;
}

.wall {
background-color: blue;
}

.power-pellet {
background-color: green;
border-radius: 7.5px;
}

.pacman {
background-color: yellow;
border-radius: 7.5px;
}
Console
/index.html
-4:19