previous
UK[ˈpri:viəs] US[ˈpriviəs]
adj.Previous; previous; premature; (in time) a little before of
adv.before, before...
Bootstrap previous style syntax
Function: The button style of the previous page in .pager, left aligned
Bootstrap previous style example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 标签页与胶囊式标签页</title> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>分页</h2> <p>.previous 和 .next 类设置左右对齐:</p> <ul class="pager"> <li class="previous"><a href="#">上一页</a></li> <li class="next"><a href="#">下一页</a></li> </ul> </div> </body> </html>
Click the "Run instance" button to view the online instance