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>
广告