Bootstrap 4 .btn-outline-success 按钮类
在 Bootstrap 中使用 btn-outline-success 类可为按钮设置绿色轮廓。
绿色按钮轮廓状态表示成功,您可以像这样设置按钮 −
<button type="button" class="btn btn-outline-success"> Result </button>
上面我在 <button> 元素上设置了该类,就像我们在 HTML 或 Bootstrap 中对任何其他元素设置类一样。
这里有一个示例,教你如何在 Bootstrap 中使用 btn-outline-success 类 −
示例
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <h2>Result</h2> <p>The following are the subjects:</p> <ul class = "list-group"> <li class = "list-group-item">Maths</li> <li class = "list-group-item">Digital Electronics</li> </ul> <p>For result, click below:</p> <button type="button" class="btn btn-outline-success">Result</button> </body> </html>
广告