Recently Filtered
-
You could always add .table-responsive
class to the table to get it scroll horizontally. Example:
<div class="table-responsive">
<table class="table table-striped">
...
</table>
</div>
If that isn't what you're wanting, you'll need to lower the font size to make it fit better.
讨论(0)
-
it appears to only happen when the viewport has responded down to mobile sizes. The easiest fix is to add overflow
rule.
.panel {
overflow: auto;
}
you could also change font sizes or remove unneeded table cells. You could also abbreviate
- ID
- Temp
- V
- Date
讨论(0)
-
Just an idea, you tryed to add a div with class panel-body around the table?
讨论(0)