I have the following table, and the problem is that when it is for small devices it is not responsive.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" th:href="@{/css/jquery.dataTables.css}" />
<script th:src="@{/js/jquery.dataTables.js}"></script>
</head>
<table id="ranking" class="table table-hover">
<thead class="table-info">
<tr >
<th>Posición</th>
<th>Alias</th>
<th>Nombre</th>
<th>Puntuación</th>
</tr>
</thead>
<tbody>
<!-- <tr th:each="u,pos: ${usuarios}">
<th th:text="${pos.count}"></th>
<th th:text="${u.alias}"></th>
<th th:text="${u.nombre}"></th>
<th th:text="${u.puntos}"></th>
</tr>-->
<tr>
<th>aaaaaaaaaa</th>
<th>aaaaaaaaaa</th>
<th>aaaaaaaaa</th>
<th>aaaaaaaaaaaaaaaaaaa</th>
</tr>
</tbody>
</table>
<script>
$('#ranking').DataTable( {
searching : false,
responsive: true,
lengthChange : false,
paging : false,
info :false,
language : {
"url": "/js/spanish.json"
}
} );
</script>