在 Bootstrap 中创建一个红色警告框,指示一项危险操作
使用 Bootstrap 中的 .alert-danger 类创建一个红色警告框,表明危险操作。
你可以尝试运行以下代码来实现 .alert-danger 类——
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link rel = "stylesheet" href = "https://maxcdn.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://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <div class = "alert alert-danger"> <p>Danger!</p> <p>Add dangerous action here...</p> </div> </div> </body> </html>
广告