optinidissord
New Member
I want to make a grid of around 50 columns and 50 rows with height and width of each cell to be 10px.\[code\]<!DOCTYPE html><html><head><style>table { border-collapse:collapse; }table,th, td { border: 1px solid black; }td{width:10px;}tr{height:10px;}</style></head><body> <table border="1"> <tr> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> </tr> </table></body></html>\[/code\]I can do this by writing the code a hundred times..But I think there should be some more practical way of doing this by css..Can anyone help...