Chin的博客

程序的世界多奇妙

Bootstrap常用组件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
   <!DOCTYPE html>
<html lang="en">
 <head>
     <meta charset="utf-8"/>
 <link id="bootstrap_221" rel="stylesheet" type="text/css" class="library" href="/js/sandbox/bootstrap-2.2.1/css/bootstrap.min.css">
 </head>
 <style>
  .pagination ul > li > input{
         vertical-align: top;
         -webkit-border-radius: 0;
          -moz-border-radius: 0;
               border-radius: 0;
         height:auto;
         *height: 20px;
         margin-bottom:0px;
         background-color: #fff;
         border-left-width: 0;
         width:40px;
         float:left;
         min-height: auto;
         *min-height: 20px;
     }
 </style>
 <body>
     <div class="pagination pagination-right">
         <ul>
             <li><a href="#"><i class="icon-fast-backward"></i></a></li>
             <li class="disabled"><a href="#">Previous</a></li>
             <li class="disabled"><a href="#">1</a></li>
             <li class="disabled"><a href="#">2</a></li>
             <li class="disabled"><a href="#">3</a></li>
             <li class="disabled"><a href="#">4</a></li>
             <li class="disabled"><a href="#">5</a></li>
             <li><a href="#">Next</a></li>
             <li><a href="#"><i class="icon-fast-forward"></i></a></li>
             <li><input type="text" class="input"></li>
             <li><a href="javascript:void();" onclick="">Go</a></li>
         </ul>
     </div>
 </body>
</html>

Comments