⟩ How to set jquery mobile responsive table width to 100% width despite css styles?
.ui-table-reflow.ui-responsive {
display: table-row-group;
}
In order to avoid changing the default CSS from jquery mobile you can put this code in a separate style.css
.ui-table-reflow.ui-responsive
{
display: table !important;
}