Pagination

Pagination provides a control for managing multiple pages of content. It creates a horizontally aligned set of buttons that can be used for just “previous” and “next” buttons or for displaying a set of page numbers as well.

Example Usage:

Code Example:

    
        <ul class="pagination">
            <li><a href="#">Prev</a></li>
            <li><a href="#">...</a></li>
            <li><a href="#">49</a></li>
            <li><a class="active" href="#">50</a></li>
            <li><a href="#">51</a></li>
            <li><a href="#">...</a></li>
            <li><a href="#">Next</a></li>
        </ul>
    
Up Next: »