DEV Community

Doug Jones
Doug Jones

Posted on

SNAKE GRID

css grid logo
As I continue to work on building out the snake game. I also get my first taste of using CSS Grid.

Why CSS grid?

snake game logo
What makes grid work for this game is that. We can set the game board up with equal columns and rows.
I set my board up to have 21 equal columns and 21 rows.

Mapping out the grid?

x y coordinates
Using X, Y coordinates to help track the movement of my snake but also set up random location for the food to pop up on the grid.
X being the horizontal and Y being the vertical.

While learning to play around with grid it also helps with building function to test user input for direction and other things.

While I'm not master or expert the experience of using grid has opened up a door to try some new things.

Hope you keep pushing into some new areas. If you haven’t played around with CSS grid I encourage you to try it and share you experience with others.

Happy Coding πŸ‘¨πŸΏβ€πŸ’»πŸ‘¨πŸ»β€πŸ’»πŸ§‘πŸΎβ€πŸ’»πŸ‘©β€πŸ’»

Top comments (0)