Responsive table overflow on mobile devices
Check out this image:
See how "Rest", "Wednesday: 4: 00-6: 00pm" flow to the next row below the column heading? How do I keep the contents of a cell in one column? It looks very messy at the moment. I am using jQuery for default flexible tables mobile apps.
<table data-role="table" class="ui-responsive">
<thead>
<tr>
<th>Activity Type</th>
<th>Time</th>
<th>Contact</th>
<th>Address</th>
<th>Website</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
I am adding cell content dynamically.
+3
source to share