I need help creating an "Actions" dropdown in the last column of a table, but I'm facing overflow issues when clicking on the dropdown (refer to the attached screenshot).
Here is the structure of my HTML:
<table id="app_progress" class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>In Build</th>
<th>Signed off</th>
<th>In deployment Apple</th>
<th>In deployment Android</th>
<th>In review Apple</th>
<th>In review Android</th>
<th>Live Apple</th>
<th>Live Android</th>
<th>Paid</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!--for loop here that will create a TR all content in the TD based on whats passed in.-->
<tr>
<!--td>523</td-->
<td><a href="#" class="view-form-a">Primary</a></td>
<!-- in_build column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
<!-- signed_off column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
<!-- in_deployment_apple column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
<!-- in_deployment_android column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
<!-- in_review_apple column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
<!-- in_review_android column -->
<td><a href="#" class="tick-anchor"><span aria-hidden="true" class="glyphicon glyphicon-remove"></span></a></td>
... (remaining code omitted for brevity) ...
<tr>
<!--td>99786</td-->
<td><a href="#" class="view-form-a">Primary School</a></td>
... (similar structure for other columns) ...
</tr>
<!--End of If statement-->
<!--everything goes within the loop-->
</tbody>
</table>
How can I solve the issue of overflow while using the dropdown?
Thank you.