Excuse me for this simple question. I have designed a sudoku grid in the following way.
Edited(Using Tables):
<table id="grid" border="1" style="border-collapse: collapse;">
<tr class="row">
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<!--row--></tr>
---------------------------------------------------------
---------------------------------------------------------
<tr class="row">
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<td class="cell"><input type="text" maxlength="1"></td>
<!--row--></tr>
</table>
The CSS for the document is
#game {
width: 600px;
height: 600px;
margin-top: 20px;
margin-bottom: 100px;
margin-left: 30px;
position: absolute;
display: block;
background-color: white;
}
#grid {
width: 378px;
height: 395px;
margin-left: 20px;
margin-top: 50px;
border: 3px solid #000000;
}
.cell input {
display: inline-block;
float: left;
border: 1px solid black;
width: 40px;
height: 40px;
text-align: center;
font-size: 30px;
}
But I am unable to make every third column and third row thick so that each 3 * 3 cell block appears distinctly. Can anyone guide me? Thanks in advance.