Bootstrap 表单复选框
如果你希望用户从列表中选择任意数目的选项,则使用 checkbox 类。对一系列复选框使用 .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>
广告