Bootstrap中的面板警告类用于在Bootstrap中设置警告。您可以尝试运行以下代码来实现面板警告类-
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "panel panel-warning"> <div class = "panel-heading"> <h3 class = "panel-title">Panel title (warning)</h3> </div> <div class = "panel-body"> This is a demo panel </div> </div> </body> </html>