为Bootstrap按钮添加尺寸

ID:10012 / 打印

为bootstrap按钮添加尺寸

为了在Bootstrap中为按钮添加大小,可以尝试以下类:

描述

.btn-lg

这会使按钮变大。

.btn-sm

这会使按钮变小。

.btn-xs

这会使按钮变得特别小。

.btn-block

这会创建块级按钮,即占据父元素的整个宽度。

示例

您可以尝试运行以下代码来创建一个小按钮 −

演示

<!DOCTYPE html> <html>    <head>       <title>Bootstrap Example</title>         <meta name = "viewport" content = "width = device-width, initial-scale = 1">       <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">       <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>       <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>    </head>    <body>       <button type = "button" class = "btn btn-default btn-sm">          Small button       </button>    </body> </html>
上一篇: 如何在一个div中垂直对齐元素?
下一篇: HTML DOM Input Reset disabled 属性 HTML DOM Input Reset disabled 属性用于设置或获取重置按钮是否被禁用

作者:admin @ 24资源网   2024-09-27

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。