我的问题是在制作tictactoe之前我应该研究什么样的html和css功能。
我目前正在使用带有丑陋的X和O字符的CSS的HTML表格:
我的CSS:
table tr td {
border: 1px solid;
}
我的HTML:
<table>
<tr>
<td>O</td><td></td><td></td>
</tr>
<tr>
<td></td><td>X</td><td></td>
</tr>
<tr>
<td></td><td></td><td>X</td>
</tr>
</table>
答案 0 :(得分:1)
为td
提供固定的宽度和高度,以及set the table
's borders to collapse:
table {
border-collapse: collapse;
}
td {
border: 5px solid #000;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
}
您还应该查看border-radius
。
Here's the fiddle,但其余的由你决定。