创建一个表单,其中所有元素都与 Bootstrap 的行内元素相一致


若要使用内嵌元素创建表单,请在 Bootstrap 中使用 form-inline 类。

你可以尝试运行以下代码来实现

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form class = "form-inline" role = "form">
         <div class = "form-group">
            <label class = "sr-only" for = "name">Name</label>
            <input type = "text" class = "form-control" id = "name" placeholder = "Enter Name">
         </div>
         <div class = "form-group">
            <label class = "sr-only" for = "inputfile">File input</label>
            <input type = "file" id = "inputfile">
         </div>
         <div class = "checkbox">
            <label><input type = "checkbox">Check for Newsletter</label>
         </div>
         <button type = "submit" class = "btn btn-default">Submit</button>
      </form>
   </body>
</html>

更新于:2020 年 6 月 12 日

64 次浏览

开启你的事业

通过完成课程获得认证

开始
广告