Разрыв между строкой поиска и содержимым таблицы в Bootstrap Datatable? - PullRequest
0 голосов
/ 16 апреля 2020

Я получаю огромный разрыв между строкой поиска и содержимым таблицы в bootstrap с датой. Пожалуйста, помогите мне с решением для устранения нежелательного разрыва. enter image description here

<div class="container-fluid pageStandard">
    <nav aria-label="breadcrumb">
        <ol class="breadcrumb">
            <li class="breadcrumb-item"><a href="@Url.Action("Index", "IndexDownloader")">Index Downloader</a></li>
            <li class="breadcrumb-item active" aria-current="page">Downloads</li>
        </ol>
    </nav>
    <div class="container-fluid">
        <table class="table table-bordered" id="table">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Type</th>

                </tr>
            </thead>
            <tbody>
                @foreach(var item in Model)
                {
                    <tr>
                        <td>@item.displayName</td>
                        <td>@item.fileType</td>

                    </tr>
                }
            </tbody>
        </table>
    </div>
</div>

...