I am currently facing an issue with two tables placed side by side using the Bootstrap grid system. While the tables are dynamic and visually appealing, I encounter a problem when adding lengthy strings dynamically. The overflow of text within the table causes it to push into the adjacent table, affecting responsiveness. This behavior seems to occur only when the character count exceeds a certain limit. Is this restriction due to a constraint in the bootstrap table grid?
https://i.sstatic.net/zfe6v.png
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="container">
<div class="col-sm-6">
<h2 class="sub-header">TITLE</h2>
<div class="table-responsive">
<table class="table table-striped ">
<thead>
<tr>
<th class="col-md-1">Subject</th>
<th class="col-md-2">Comments</th>
<th class="col-md-3">Owner</th>
<th class="col-md-3">Really Long Header that will case the table to overflow</th>
<th class="col-md-3">Date Activity Logged</th>
</tr>
</thead>
<tbody>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
<td class="col-md-4">1,001</td>
<td class="col-md-5">1,001</td>
</tr>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
<td class="col-md-4">1,001</td>
<td class="col-md-5">1,001</td>
</tr>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
<td class="col-md-4">1,001</td>
<td class="col-md-5">1,001111111111111111111111111111</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-sm-6">
<h2 class="sub-header">Title Two For Table Two</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th class="col-md-1">#</th>
<th class="col-md-2">Header</th>
<th class="col-md-3">Header</th>
</tr>
</thead>
<tbody>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
</tr>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
</tr>
<tr>
<td class="col-md-1">1,001</td>
<td class="col-md-2">1,001</td>
<td class="col-md-3">1,001</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>