Bootstrap Components

Bootstrap Pagination

Overview

An upward trend in the front-end world is the usage of CSS frameworks with base styles for our page. Instead of starting every project from scratch, creating every style in the hand, there are frameworks that already bring a whole built base from where we will start our application.

There are many options, but Bootstrap is perhaps the most famous. It was released as open source and the project has grown in maturity and importance in the market.

Bootstrap brings a number of features:

● Reset CSS

● Base visual style for most tags

Icons

Grids ready for use

● CSS Components

● JavaScript Plugins

● All responsive and mobile-first

As its name implies, it is a way to start the project soon with a basic design and features without wasting design time in the beginning.

Basic pagination concepts.

Whenever we have a page with many items to display, paging becomes necessary. We know that in the case of lists, such as displaying products in virtual stores or search results in systems, the need is not to display all items at once, but rather to organize them effectively, making them easier to access, faster and more usual pages.

Below are some good practices in the use of pagination, regardless of the technology used:

Pagination: an unneeded title.

When well designed, paging dispenses the title. That is, if you needed to write "Pagination" for the user, there is something wrong: consider redesigning it!

Good visibility and positioning

Paging is a complementary navigation and should have good positioning and good visibility. Use fonts with sizes and colors that follow the pattern of page usage, giving good visibility and positioning it right after the item listing ends.

Be simple.

Some paging tools offer advanced navigation features such as going straight to a specific page or advancing a certain number of pages at once. Although they are extra features, users are more accustomed to simple shapes and do better with conventional models.

Provide sorting options

A good and recommended feature is to provide sorting options to optimize their use.

Do not use subscript styles on the links

In paging tools, these features are unnecessary, since the links are obvious and the subscript style will just leave the visual loaded.

Provide good space for clickable areas

The larger the clickable area the more accessible the buttons become and therefore easier to use.

Give spaces between the links

Spacing from one button to another will make paging more comfortable and user-friendly, avoiding unwanted access.

Identify the current page and provide the basic navigation links

The paging function is to facilitate user navigation, so the tool should make it clear where the user is, where he has been and where he can go.

Provide basic navigation links such as "Previous Page" and "Next Page", always positioning them at the beginning and end.

Provide useful shortcuts and supplementary information

Links to the "first page" and "last page" are often useful, consider them if necessary!

Take advantage of a wrapping <nav> element to detect it as a navigation area to screen readers and various other assistive technologies.

In addition, as pages possibly have more than just one such navigation area, it's advisable to provide a detailed aria-label for the <nav> to demonstrate its purpose. If the pagination component is used to navigate between a set of search results, an appropriate label could be aria-label="Search results pages".

Bootstrap  navigating  hyperlinks
<nav aria-label="Page navigation example">
  <ul class="pagination">
    <li class="page-item"><a class="page-link" href="#">Previous</a></li>
    <li class="page-item"><a class="page-link" href="#">1</a></li>
    <li class="page-item"><a class="page-link" href="#">2</a></li>
    <li class="page-item"><a class="page-link" href="#">3</a></li>
    <li class="page-item"><a class="page-link" href="#">Next</a></li>
  </ul>
</nav>

Bootstrap Pagination

Basic Pagination

You may want to add some kind of pagination to each page if you have a site with many pages.

To create a basic pagination, add the .pagination class to an <ul> element.

 General pagination in Bootstrap
<nav>
<ul class="pagination">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>

Bootstrap 4 and Bootstrap 3 differences

Bootstrap 3 only requires the .pagination class.

Bootstrap 4, as well as the .pagination class, additionally demands the .page-item class to get put into each and every <li> element and .page-link to every <a> element.

Using icons

Trying to make use of an icon or symbol in place of content for a number of pagination links? Make sure to produce effective screen reader support with aria attributes and the .sr-only utility.

Bootstrap icons pagination
<nav aria-label="Page navigation example">
  <ul class="pagination">
    <li class="page-item">
      <a class="page-link" href="#" aria-label="Previous">
        <span aria-hidden="true">«</span>
        <span class="sr-only">Previous</span>
      </a>
    </li>
    <li class="page-item"><a class="page-link" href="#">1</a></li>
    <li class="page-item"><a class="page-link" href="#">2</a></li>
    <li class="page-item"><a class="page-link" href="#">3</a></li>
    <li class="page-item">
      <a class="page-link" href="#" aria-label="Next">
        <span aria-hidden="true">»</span>
        <span class="sr-only">Next</span>
      </a>
    </li>
  </ul>
</nav>

Active state

The active state shows what the current page is.

Add .active class so that the user knows which page he is.

Bootstrap pagination active  form
<nav>
<ul class="pagination">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item active"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>

Disabled State

A disabled link can not be clicked:

Add .disabled class if a link for some reason is disabled.

Disabled  Status
<nav>
<ul class="pagination">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item disabled"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>

Pagination Sizing

Paging blocks can also be scaled to a larger or smaller size size.

Add .pagination-lg class to larger blocks or .pagination-sm to smaller blocks.

Pagination  Sizes
<nav>
<ul class="pagination pagination-lg">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>

<code>
<nav>
<ul class="pagination">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
<nav>
<ul class="pagination pagination-sm">
<li class="page-item">
<a href="#" class="page-link" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item"><a href="#" class="page-link">2</a></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item"><a href="#" class="page-link">4</a></li>
<li class="page-item"><a href="#" class="page-link">5</a></li>
<li class="page-item"><a href="#" class="page-link">6</a></li>
<li class="page-item"><a href="#" class="page-link">7</a></li>
<li class="page-item">
<a href="#" class="page-link" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>

Switch the positioning of pagination parts using flexbox utilities.

Pagination alignment
<nav aria-label="Page navigation example">
  <ul class="pagination justify-content-center">
    <li class="page-item disabled">
      <a class="page-link" href="#" tabindex="-1">Previous</a>
    </li>
    <li class="page-item"><a class="page-link" href="#">1</a></li>
    <li class="page-item"><a class="page-link" href="#">2</a></li>
    <li class="page-item"><a class="page-link" href="#">3</a></li>
    <li class="page-item">
      <a class="page-link" href="#">Next</a>
    </li>
  </ul>
</nav>
Pagination alignment in Bootstrap
<nav aria-label="Page navigation example">
  <ul class="pagination justify-content-end">
    <li class="page-item disabled">
      <a class="page-link" href="#" tabindex="-1">Previous</a>
    </li>
    <li class="page-item"><a class="page-link" href="#">1</a></li>
    <li class="page-item"><a class="page-link" href="#">2</a></li>
    <li class="page-item"><a class="page-link" href="#">3</a></li>
    <li class="page-item">
      <a class="page-link" href="#">Next</a>
    </li>
  </ul>
</nav>

Review a number of online video short training relating to Bootstrap Pagination

Connected topics:

Bootstrap pagination: authoritative information

Bootstrap pagination official  records

W3schools:Bootstrap pagination tutorial

Bootstrap tutorial

Centering the pagination in Bootstrap

Centering the pagination in Bootstrap

Best Free AI Website Generator

Generate AI websites with a simple prompt! Type in any language, export code in zip.


ChatGPT Website Generator



Best Free Website Builder Software

Create awesome websites offline! No coding. 9900+ templates. Edit and save locally, upload wherever.


Free website builder download for Win, Mac, Linux!



Best Website Templates

HTML Business Templates

HTML Business Templates

Web Design HTML Templates

Web Design HTML Templates

HTML eCommerce Website Template

HTML eCommerce Website Template

Hotel HTML Template

Hotel HTML Template

Landing Page HTML Template

Landing Page HTML Template

Premium Design HTML Themes

Premium Design HTML Themes

HTML Resume Template

HTML Resume Template

Online Shopping HTML Template

Online Shopping HTML Template

HTML Responsive Templates

HTML Responsive Templates

Latest Posts

  1. Launch a Site in No Time? We Reviewed 24 AI Builders to Determine the Clear Winner.
  2. List of 20 AI Code Builders and Generators - Get your code built by AI.
  3. 15 Best AI Website Creators and Generators - Generate your website instantly with AI.
  4. AI website creator and generator - how to create a website with AI in just 2 minutes.
  5. Best Free AI website generator and builder - create a website design with AI.
  6. Best Website Builder AIBest Free AI Website Builder - Create Website Design with AI
  7. Best Website Builder for Consultants, Magazines, Churches, Authors
  8. Best Website Builder for Designers, Videos, Education, Software Companies
  9. Website Builder for Beginners, Bloggers, Writers, IT Companies
  10. Best Website Builder for Restaurants, Online Stores, Real Estate, Musicians
  11. Best Website Builder for podcasts and affiliate marketing
  12. Therapists and nonprofits Website Builder
  13. Portfolio and SEO Website Builder
  14. Website Builder for Kids and Musicians
  15. Website Builder for Photographers and Artists
  16. HTML Code Generator - HTML Code Creator
  17. Web Design Program - Website Design Tool
  18. Landing Page Generator - Landing Page Builder
  19. No Coding Website Builder - Website Builder For Small Business
  20. Innovative HTML Builder Drag And Drop Free for Your Next Project
  21. Is There A Completely Free QR Code Generator
  22. Extremely Comfortable Business Website Constructor Review
  23. Bootstrap Select
  24. Bootstrap Panel
  25. Bootstrap Tabs
  26. Bootstrap Toggle
  27. Bootstrap Modal Popup
  28. Bootstrap Row
  29. Bootstrap Multiselect
  30. Bootstrap Media queries
  31. Bootstrap Login Forms
  32. Bootstrap Layout
  33. Bootstrap Jumbotron
  34. Bootstrap Button Group
  35. Bootstrap Breakpoints
  36. Bootstrap Navbar
  37. Bootstrap Tooltip
  38. Bootstrap Textarea
  39. Bootstrap Switch
  40. Bootstrap Slider
  41. Bootstrap Progress Bar
  42. Bootstrap Label
  43. Bootstrap Header
  44. Bootstrap Clearfix
  45. Bootstrap Sidebar
  46. Bootstrap Radio
  47. Bootstrap Offset
  48. Bootstrap Menu
  49. Bootstrap Columns
  50. Bootstrap Checkbox
  51. Bootstrap Accordion
  52. Bootstrap Image
  53. Bootstrap Grid
  54. Bootstrap Form
  55. Bootstrap Glyphicons
  56. Bootstrap List
  57. Bootstrap Carousel
  58. Bootstrap Icons
  59. Bootstrap Collapse
  60. Bootstrap Popover
  61. Bootstrap Input
  62. Bootstrap Modal
  63. Bootstrap Button
  64. Bootstrap Alert
  65. Bootstrap Table