基本上
响应表只是宽度为100%的表。
您可以使用以下CSS设置表格:
.table { width: 100%; }[Demo here](http://jsbin.com/OYiRese/1)
您可以通过添加类(或使用进行定位
nth-child),根据屏幕尺寸使用媒体查询来显示/隐藏/操作列:
@media screen and (max-width: 320px) { .hide { display: none; }}HTML
<td >Not important</td>

响应表只是宽度为100%的表。
您可以使用以下CSS设置表格:
.table { width: 100%; }[Demo here](http://jsbin.com/OYiRese/1)
您可以通过添加类(或使用进行定位
nth-child),根据屏幕尺寸使用媒体查询来显示/隐藏/操作列:
@media screen and (max-width: 320px) { .hide { display: none; }}HTML
<td >Not important</td>