mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 02:36:11 +02:00
798 B
798 B
layout, title, description, keywords
layout | title | description | keywords |
---|---|---|---|
layouts/post.njk | Pagination | Create a pagination with CSS flexbox | css flexbox, css pagination |
HTML
<div class="pagination">
<!-- Pagination item -->
<div class="pagination__item">
...
</div>
<!-- Repeat other items -->
...
</div>
CSS
.pagination {
display: flex;
/* Border */
border: 1px solid #d1d5db;
border-radius: 4px;
}
.pagination__item {
/* Center the content */
align-items: center;
display: flex;
justify-content: center;
}
.pagination__item:not(:last-child) {
/* Right border */
border-right: 1px solid #d1d5db;
}
.pagination__item--active {
background-color: #d1d5db;
}
{% demo %}{% include "covers/pagination.njk" %}{% enddemo %}