Skip to content

🐛 [Bug]: Tic Tac Toe game board not rendering correctly #709

@Shital861

Description

@Shital861

📝 Description

The Tic Tac Toe game board is not rendering as a proper 3x3 grid.
Instead of displaying clickable cells in a grid layout, it shows a
row of tiny circles (oooooooo) at the bottom of the modal with no
visible game board structure.

🔄 Steps to Reproduce

  1. Open the live site
  2. Click on the Tic Tac Toe project card
  3. Select game mode and click "Start Game"
  4. Observe the board area at the bottom — shows "oooooooo" instead
    of a 3x3 grid

🎯 Expected Behavior

A proper 3x3 Tic Tac Toe grid with clearly visible, clickable cells
should render after clicking "Start Game".

❌ Actual Behavior / Error Logs

The board renders as a single row of tiny circle characters with no
grid structure, making the game unplayable.

Suggested Fix

Check the .ttt-board or equivalent grid CSS class inside
tic-tac-toe.js and ensure:

  • display: grid
  • grid-template-columns: repeat(3, 1fr)
  • Proper width and height on each cell
Image

💻 Environment

  • OS: [e.g. Windows 11, macOS, Ubuntu]
  • Python Version: [e.g. 3.10.x]
  • File Name: [e.g. rock_paper_scissors.py]

  • I am a registered GSSoC 2026 contributor.
  • I want to be assigned to fix this issue.

Metadata

Metadata

Assignees

No one assigned

    Labels

    type:bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions