zoukankan      html  css  js  c++  java
  • Bootstrap中的表单(1)

    
    
    class="form-inline"   水平排列
    class="form-group"   组键
    form-control       圆角方框发光
    input-lg          输入框变大 input-sm          输入框变小

    小练习:

     1 <!DOCTYPE html>
     2 <html>
     3     <head>
     4         <meta charset="UTF-8">
     5         <title></title>
     6         <link href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
     7         <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
     8         <script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
     9     </head>
    10     <body>
    11         <from class="form-inline">
    12             <div class="form-group">
    13                 <label class="form-group has-success">这是一个输入框:</label>
    14                 <input type="text" class="form-control input-lg" placeholder="这是一个输入框"/>
    15             </div>
    16             
    17             <div class="form-group">
    18                 <label class="form-group has-success">这是一个输入框:</label>
    19                 <select class="form-control" name="" id="">
    20                     <option value="">北京</option>
    21                     <option value="">北京</option>
    22                     <option value="">北京</option>
    23                     <option value="">北京</option>
    24                 </select>
    25             </div>
    26             
    27             <div class="form-group">
    28                 <label class="form-group has-success">这是一个输入框:</label>
    29                 <textarea class="form-control" name="" id="" cols="30" rows="10">
    30                 </textarea>
    31             </div>
    32         </from>
    33     </body>
    34 </html>
    示例代码
    
    
    
     
     
     
  • 相关阅读:
    Saltstack module acl 详解
    Saltstack python client
    Saltstack简单使用
    P5488 差分与前缀和 NTT Lucas定理 多项式
    CF613D Kingdom and its Cities 虚树 树形dp 贪心
    7.1 NOI模拟赛 凸包套凸包 floyd 计算几何
    luogu P5633 最小度限制生成树 wqs二分
    7.1 NOI模拟赛 dp floyd
    springboot和springcloud
    springboot集成mybatis
  • 原文地址:https://www.cnblogs.com/123wyy123wyy/p/6965025.html
Copyright © 2011-2022 走看看