使用轮廓为红色的 Bootstrap 4 按钮指示危险
在 Bootstrap 4 中使用 btn-outline-danger 类,使用红色轮廓指示危险。
以下是设置一个用红色轮廓指示危险的按钮的示例 −
<button type="button" class="btn btn-outline-danger"> Danger </button>
该类使用 Bootstrap 中的 btn 和 btn-outline-danger 类添加 −
class="btn btn-outline-danger”
我们来看一个实现 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>Animals</h2> <p>Animals are in danger. To know what, you need to click below:</p> <button type="button" class="btn btn-outline-danger">Danger</button> </body> </html>
广告