Bootstrap复选框类

构建表单时,如果希望用户从列表中选择任意数量的选项,请使用复选框类。使用.checkbox-inline类将一系列用于控件的复选框显示在同一行上。

您可以尝试运行以下代码来实现Bootstrap复选框类-

示例

<!DOCTYPE html>
<html>
   <head>
      <title>Try v1.2 Bootstrap Online</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <label for = "name">Favourite Live Streaming</label>
      <div class = "checkbox">
         <label>
            <input type = "checkbox" value = "">Amazon Prime
         </label>
      </div>
      <div class = "checkbox">
         <label>
            <input type = "checkbox" value = "">Hotstar
         </label>
      </div>
   </body>
</html>