top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Which class is used for basic pagination in bootstrap?

0 votes
444 views
Which class is used for basic pagination in bootstrap?
posted Jul 3, 2017 by Avijit Maity

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Pagination is the process of organizing content by dividing it into separate pages. Pagination is used in some or other form quite often in almost every web application, for instance it is used by search engines for displaying a limited number of results on search results pages, or showing a limited number of posts for every page on a blog or forum. Use the class .pagination for making basic pagination in bootstrap.

Example

<ul class="pagination">
    <li><a href="#">&laquo;</a></li>
    <li><a href="#">1</a></li>
    <li><a href="#">2</a></li>
    <li><a href="#">3</a></li>
    <li><a href="#">4</a></li>
    <li><a href="#">5</a></li>
    <li><a href="#">&raquo;</a></li>
</ul>

Preview

enter image description here

answer Jul 3, 2017 by Ananna Dey
...