在Bootstrap中使用.label-warning类添加黄色标签。
您可以尝试运行以下代码来实现。标签警告类-
<!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 = "container"> <p>Warning label</p> <span class = "label label-warning">Warning</span> </div> </body> </html>