17 lines
203 B
CSS
17 lines
203 B
CSS
body {
|
|
text-align: center;
|
|
font-family: Arial;
|
|
}
|
|
|
|
table {
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 1px solid black;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
} |