Styling a sudoku grid

后端 未结 5 1763
时光说笑
时光说笑 2021-01-22 12:47

I’ve created a sudoku puzzle creator / solver and need a bit of help with some CSS to style it.

Typically they are styled like this:

.

Some naming I’m us

5条回答
  •  萌比男神i
    2021-01-22 13:33

    If it were me, I would have used a table with 9 rows and 9 columns.

    Then used :nth-of-type(3n) in the CSS selectors to set the border on every third row and column.

提交回复
热议问题