这篇文章给大家分享的是有关使用bootstrap制作form表单的方法的内容。小编觉得挺实用的,因此分享给大家做个参考。一起跟随小编过来看看吧。
Bootstrap可以轻松创建经常看到的表单类型,编码非常的简单。
制作表单的方法
首先利用<form>标签设置表单,然后为表单的每个元素设置class =”form - group“(用“<div>”等标签设置你想要设置class =”form-group“的范围)。最后通过在<input>标签中设置class =”form-control“来完成。
我们来看bootstrap创建表单的具体示例
代码如下
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>sample</title> <script src="bootstrap-4.2.1-dist/js/bootstrap.min.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="bootstrap-4.2.1-dist/css/bootstrap.min.css" /> </head> <body style="padding: 50px;"> <form> <div class="form-group"> <label for="email">电子邮箱</label> <input type="email" class="form-control" id="email" placeholder="电子邮箱"> </div> <div class="form-group"> <label for="pass">密码</label> <input type="password" class="form-control" id="pass" placeholder="密码"> </div> <div> <label for="file">文件上传:</label> <input type="file" id="file"> <p class="help-block">显示文件帮助。</p> </div> <div class="check"> <label> <input type="checkbox">确认 </label> </div> <button type="submit" class="btu btn-default">发送</button> </form> </body> </html>
运行效果如下:
此外,还可以创建内联表单。我们只要在<form>标签中添加class =”form-inline“就可以了,在这里就不多说了,有兴趣的朋友可以自己试一试。
感谢各位的阅读!关于使用bootstrap制作form表单的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。