Una tabella responsive è una cosa, mentre cosa ben diversa è una pagina con una struttura grafica a griglia. Per il secondo caso, non l'ideale l'uso di una tabella respomsive.
Io lo imposterei facendo qualcosa di questo tipo:
Codice HTML:
<!DOCTYPE html>
<html>
<head>
<title>Titolo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<style>
.center {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
height: 100%;
}
.container {
display: flex;
height: 600px;
flex-wrap: wrap;
align-content: center;
justify-content: center;
background-color: DodgerBlue;
}
.container > div {
background-color: #f1f1f1;
width:128px;
height:128px;
margin: 10px;
text-align: center;
line-height: 128px;
font-size: 30px;
}
</style>
</head>
<body>
<div class="container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10</div>
<div>11</div>
<div>12</div>
</div>
</body>
</html>
Cordiali saluti.