.previous - align pager buttons to the left side of the page for previous button - HTML CSS Bootstrap Class List

HTML CSS examples for Bootstrap Class List:previous

Description

.previous - align pager buttons to the left side of the page for previous button

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head><!-- w ww .  j  ava 2 s . c o  m-->
<body>

<div class="container">
  <h2>Pager</h2>
  <p>The .pager class provides previous and next buttons (links):</p>
  <ul class="pager">
    <li class='previous' ><a href="#">Previous</a></li>
    <li><a href="#">Next</a></li>
  </ul>
</div>

</body>
</html>

Related Tutorials