“Статический заголовок Bootstrap Table” Ответ

Таблица фиксированный заголовок

.tableFixHead thead th { position: sticky; top: 0; }
itaca9

Столовая начальная загрузка со сккрущением

<div style="height: 600px;overflow: scroll;">
<!-- change height to increase the number of visible row  -->
	<table></table>
</div>
Thibaudkhan

Скрытые ряды полосатых полос

// For Bootstrap 4
$("tr:visible").each(function (index) {
    $(this).css("background-color", !!(index & 1)? "rgba(0,0,0,.05)" : "rgba(0,0,0,0)");
});

// For previous versions
$("tr:not(.hidden)").each(function (index) {
    $(this).toggleClass("stripe", !!(index & 1));
});
Condemned Civet

Статический заголовок Bootstrap Table

sdfgsdfgsdfg
Marcio Souza

Ответы похожие на “Статический заголовок Bootstrap Table”

Вопросы похожие на “Статический заголовок Bootstrap Table”

Больше похожих ответов на “Статический заголовок Bootstrap Table” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования