I have all my divs necessary for my tic tac toe game, however I can\'t seem to find a simpler way to make a grid and not have any borders so it\'s just a grid and not 9 full
Like @NoobEditor said in his comment: show us what you've tried so far next time.
You can achieve this by using div
s floated next to each other, acting as columns.
Inside those div
s you add more div
s acting as rows.
CSS
.column{
float: left;
width: 70px;
height: 70px;
border: 1px solid blue;
overflow: hidden;
}
.row{
width: 68px;
height: 25px;
border: 1px solid red;
}
Example here.