Google News
logo
Bootstrap-3 - Interview Questions
What is bootstrap pagination and how we can use it?
When your site contains a lot of pages, then pagination comes into the picture. Pagination is the handling of the unordered list on your site
 
To create basic pagination add the .pagination class

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>
Advertisement