next
#英[nekst] 美[nɛkst]
adj. Immediately after; second to; close to; immediately adjacent
adv.Go on;then;behind;sequentially
n.next;next one
prep.Close;behind;next door to…
Bootstrap next style syntax
Function: The button style of the next page in .pager, right aligned
Bootstrap next 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