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!



Latest Posts

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