-2

How to align the '1' and '2' that shows when a player click on the <td> centrally within the element?

Current version can be found here.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129

1 Answers1

0

This is something that's very easy to find out by searching... anyways, since you're using table cells, just add the text-align: center; rule to the td:

td {
    text-align: center;
}
andreas
  • 16,357
  • 12
  • 72
  • 76