引导表格复选框
如果希望用户从列表中选择任意数量的选项,请使用复选框类。使用.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"></label>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>