When using Yajra datatable, the Horizontal scrollbar typically appears at the bottom of the webpage. However, I am looking to have it display at the bottom of the browser window instead. The datatable is contained within a card.
I attempted to achieve this by adding the following code in the style tag, but it did not work:
`
<style>
.dataTables_scrollBody {
overflow-x: scroll;
overflow-y: hidden;
position: absolute;
bottom: 0;
}
</style>
`