Код: Выделить всё
Tic Tac Toe
/* Styling for the game board */
table {
border-collapse: collapse;
margin: auto;
font-size: 25px;
font-weight: bold;
}
td {
width: 50px;
height: 50px;
border: 1px solid black;
text-align: center;
vertical-align: middle;
cursor: pointer;
}
td:hover {
background-color: #ccc;
}
Подробнее здесь: [url]https://stackoverflow.com/questions/75818560/i-need-help-building-this-tic-tac-toe-game-using-php[/url]