bootstrap4如何设置按钮 互联网 19-7-12 bootstrap4设置按钮代码:,Bootstrap 4 提供了不同样式的按钮,可通过class来选择不同样式的按钮。实例:(推荐学习:Bootstrap视频教程)<!DOCTYPE html> <html> <head> <title>Bootstrap 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>按钮样式</h2> <button type="button" class="btn">基本按钮</button> <button type="button" class="btn btn-primary">主要按钮</button> <button type="button" class="btn btn-secondary">次要按钮</button> <button type="button" class="btn btn-success">成功</button> <button type="button" class="btn btn-info">信息</button> <button type="button" class="btn btn-warning">警告</button> <button type="button" class="btn btn-danger">危险</button> <button type="button" class="btn btn-dark">黑色</button> <button type="button" class="btn btn-light">浅色</button> <button type="button" class="btn btn-link">链接</button> </div> </body> </html>按钮类可用于 <a>, <button>, 或 <input> 元素上。更多Bootstrap相关技术文章,请访问Bootstrap教程栏目进行学习!以上就是bootstrap4如何设置按钮的详细内容,更多内容请关注技术你好其它相关文章! 来源链接: 免责声明: 1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险 2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场 标签: bootstrap4 上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:bootstrap4如何设置弹出框