Bootstrap 4 按钮 .btn-outline-danger 类
要在按钮上设置轮廓以指示危险,你需要在 Bootstrap 中使用 btn-outline-danger 类。
在 <button> 元素中设置轮廓 −
<button type="button" class="btn btn-outline-danger"> Danger Ahead </button>
你可以尝试运行以下代码来实现 btn-outline-danger 类 −
示例
<!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>Danger Button</h2> <button type="button" class="btn btn-outline-danger">Danger Ahead</button> </body> </html>
广告